.media-section {
    padding: 3.7vh 1.25vw 10.19vh;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.media-container {
    max-width: 62.5vw;
    margin: 0 auto;
    text-align: center;
}

.media-header {
    margin-bottom: 1.85vh;
    text-align: center;
}

.media-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.83vw;
    margin-bottom: 2.22vh;
}

.badge-line {
    width: 2.08vw;
    height: 0.09vh;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-top: 0.09vh solid #000000;
}

.badge-text {
    font-size: 1.3vh;
    font-weight: 600;
    letter-spacing: 0.1vh;
    text-transform: uppercase;
    color: #000000;
}

.media-title {
    font-size: 3.8vh;
    font-weight: 800;
    margin-bottom: 2.22vh;
    line-height: 1.2;
    color: #000000;
    letter-spacing: normal;
    word-spacing: normal;
}

.media-section .title-highlight {
    color: #000000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: normal;
}

.media-title span {
    letter-spacing: normal;
    word-spacing: normal;
}

.media-title .title-highlight {
    margin-right: 0;
    padding-right: 0;
}

.media-title span:not(.title-highlight):not(.title-dot) {
    color: #000000;
    font-weight: 800;
}

.media-section .media-title .title-dot {
    color: #b3ce3a !important;
}

.media-description {
    font-size: 1.8vh;
    color: #545454;
    max-width: 26.04vw;
    margin: 0 auto 2.96vh;
    line-height: 1.6;
}

.media-rating {
    margin-bottom: 1.85vh;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.42vw;
}

.stars svg {
    width: 2.22vh;
    height: 2.22vh;
    color: #000000;
    filter: drop-shadow(0 0.19vh 0.37vh rgba(26, 36, 16, 0.3));
}

.media-separator {
    width: 10.42vw;
    height: 0.19vh;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    margin: 0 auto;
    border-top: 0.09vh solid #000000;
}

.media-marquee {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 62.5vw;
}

.media-marquee::before,
.media-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6.25vw;
    z-index: 10;
    pointer-events: none;
}

.media-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, transparent 100%);
}

.media-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, #ffffff 55%, transparent 100%);
}

.media-row {
    position: relative;
    height: 13.11vh;
    overflow: hidden;
}

.scrolling-content {
    display: flex;
    align-items: center;
    gap: 2.5vw;
    animation: mediaMarquee 30s linear infinite;
    width: fit-content;
}

@keyframes mediaMarquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.media-row:hover .scrolling-content {
    animation-play-state: paused;
}

.media-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.39vh 1.04vw;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    min-width: 6.25vw;
    min-height: 5.56vh;
}

.media-logo:hover {
    transform: translateY(-0.37vh);
}

.media-logo a {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-logo img {
    max-width: 9.38vw;
    max-height: 8.33vh;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.media-logo:hover img {
    transform: scale(1.05);
}

.media-logo:nth-child(7) img,
.media-logo:nth-child(14) img {
    max-width: 7.29vw !important;
    max-height: 6.48vh !important;
}

@media (max-width: 480px) {
    .media-section {
        padding: 15vh 0.63vw 10vh;
    }

    .media-header {
        margin-bottom: 2vh;
    }

    .media-title {
        font-size: 2.5vh;
        margin-bottom: 2.5vh;
    }

    .media-description {
        font-size: 1.2vh;
        max-width: 85vw;
        margin: 0 auto 3vh;
    }

    .media-badge {
        gap: 1vw;
        margin-bottom: 2vh;
    }

    .badge-line {
        width: 4vw;
        height: 0.12vh;
    }

    .badge-text {
        font-size: 1.1vh;
    }

    .scrolling-content {
        gap: 30vw;
    }

    .media-logo {
        padding: 2vh 5vw;
        min-width: 15vw;
        min-height: 5vh;
    }

    .media-logo img {
        max-width: 11vw;
        max-height: 10vh;
    }

    .media-logo:nth-child(7) img,
    .media-logo:nth-child(14) img {
        max-width: 10vw !important;
        max-height: 9vh !important;
    }

    .media-marquee::before,
    .media-marquee::after {
        width: 3vw;
    }

    .stars svg {
        width: 2.2vh;
        height: 2.2vh;
    }

    .media-separator {
        width: 10vw;
        height: 0.25vh;
    }
}
