.comment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(60px, 12vh, 100px);
    padding-bottom: clamp(40px, 8vh, 50px);
    gap: clamp(40px, 8vh, 60px);
    width: 100%;
    background-color: #141D2F;
}

.comment-content {
    display: flex;
    justify-content: flex-end;
    gap: clamp(30px, 5vw, 48px);
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    position: relative;
}

.comment-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: clamp(2px, 0.3vw, 3px) solid #9747FF;
    border-radius: clamp(20px, 3vw, 30px);
    width: 100%;
    max-width: clamp(600px, 60vw, 851px);
    min-height: clamp(220px, 30vw, 272px);
    height: auto;
    padding: clamp(30px, 5vw, 48px) clamp(40px, 8vw, 96px);
    gap: clamp(25px, 4vh, 40px);
}

.comment-container span {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
}

.comment-writer-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(12px, 2vw, 16px);
    align-items: center;
    width: 100%;
}

.comment-writer {
    white-space: nowrap;
    justify-self: end;
    font-size: clamp(16px, 1.8vw, 18px);
}

.quote-marks {
    width: 97px;
    height: 68px;
    position: relative;
    left: 80px;
    bottom: 40px;
}

.comment-img-container {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
}

.comment-img {
    width: clamp(220px, 25vw, 300px);
    height: clamp(220px, 25vw, 300px);
    background-color: #ccc;
    transition: all 0.3s ease-out;
    position: absolute;
    top: clamp(-12px, -1.5vw, -15px);
    left: clamp(-12px, -1.5vw, -15px);
    border-radius: 50%;
    object-fit: cover;
}

.comment-img.transition-out {
    opacity: 0;
    transform: scale(1.2);
}

.green-border {
    width: clamp(200px, 23vw, 272px);
    height: clamp(200px, 23vw, 272px);
    border: clamp(3px, 0.4vw, 4px) solid #70E61C;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.comment-blue-line {
    height: clamp(1px, 0.2vw, 2px);
    border-radius: 10px;
    width: 100%;
    min-width: clamp(40px, 8vw, 60px);
}

.comment-green-line {
    height: clamp(3px, 0.4vw, 4px);
}

.comment-navigation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 10px);
    margin-top: clamp(15px, 3vh, 20px);
    line-height: 120%;
}

.arrow {
    width: clamp(35px, 4vw, 40px);
    height: clamp(35px, 4vw, 40px);
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

#left_arrow {
    background-image: url("../assets/icons/arrow_left.png");
}

#left_arrow:hover {
    background-image: url("../assets/icons/arrow_left_framed.png");
}

#right_arrow {
    background-image: url("../assets/icons/arrow_right.png");
}

#right_arrow:hover {
    background-image: url("../assets/icons/arrow_right_framed.png");
}

.navigation-dot {
    font-size: clamp(20px, 2.5vw, 24px);
    color: #9747FF;
}

/* ⚠️ TABLET - 1024px - Vertikales Layout */
@media(max-width: 1024px) {
    .comment-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .comment-content {
        flex-direction: column;
        gap: 0;
    }

    /* ⚠️ REIHENFOLGE MIT ORDER */
    .comment-img-container {
        order: 1;
        justify-content: flex-end;
    }

    .quote-marks {
        order: 3;
        left: 10px;
        bottom: -35px;
    }

    .comment-container {
        order: 3;
        margin-left: clamp(20px, 8vw, 80px);
        margin-right: clamp(20px, 5vw, 50px);
        max-width: 90%;
    }

    .comment-navigation-container {
        order: 4;
    }
}

/* ⚠️ MOBILE - 768px */
@media(max-width: 768px) {
    .comment-section {
        padding-top: 50px;
        padding-bottom: 35px;
        gap: 35px;
    }

    .comment-content {
        gap: 30px;
    }

    .comment-container {
        padding: 30px 25px;
        gap: 25px;
        border-radius: 20px;
    }

    .comment-container span {
        font-size: 16px;
    }

    .comment-writer-container {
        flex-direction: column;
    }

    .comment-writer {
        justify-self: center;
        font-size: 16px;
    }

    .comment-blue-line {
        width: 60%;
    }

    .comment-img {
        width: 250px;
        height: 250px;
    }

    .green-border {
        width: 230px;
        height: 230px;
    }

    .quote-marks {
        width: 70px;
        height: 50px;
        margin-bottom: -15px;
        left: 15px;
    }

    .comment-navigation-container {
        gap: 8px;
        margin-top: 15px;
    }

    .arrow {
        width: 36px;
        height: 36px;
    }

    .navigation-dot {
        font-size: 20px;
    }
}

/* ⚠️ SMALL MOBILE - 480px */
@media(max-width: 480px) {
    .comment-section {
        padding-top: 40px;
        padding-bottom: 30px;
        gap: 30px;
    }

    .comment-container {
        padding: 25px 20px;
        gap: 20px;
        border-radius: 18px;
    }

    .comment-container span {
        font-size: 16px;
        line-height: 1.4;
    }

    .comment-writer {
        font-size: 16px;
    }

    .comment-img {
        width: 220px;
        height: 220px;
        top: -10px;
        left: -10px;
    }

    .green-border {
        width: 200px;
        height: 200px;
    }

    .quote-marks {
        width: 60px;
        height: 42px;
        left: 5px;
    }

    .comment-blue-line {
        width: 50%;
    }
}

/* ⚠️ EXTRA SMALL - 375px */
@media(max-width: 375px) {
    .comment-section {
        padding-top: 35px;
        padding-bottom: 25px;
        gap: 25px;
    }

    .comment-container {
        padding: 20px 15px;
        gap: 18px;
    }

    .comment-img {
        width: 190px;
        height: 190px;
    }

    .green-border {
        width: 170px;
        height: 170px;
    }

    .quote-marks {
        width: 55px;
        height: 38px;
    }

    .comment-writer {
        white-space: normal;
    }
}