@media screen and (max-width: 768px) {
    /* partners.css */
    .partners-section {
        background-color: #f5f5f7;
        padding-top: 80px;
        padding-bottom: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .partners-title {
        color: #2E2E2E;
        text-align: center;
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 33.6px */
        letter-spacing: -0.48px;
        margin: 0;
    }

    .partners-title .highlight::before {
        content: "";
        display: block;
    }

    .partners-title .highlight {
        color: var(--sub-70, #006DFE);
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
        letter-spacing: -0.48px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-412px * 5)); /* (card width + gap) * number of logos */
        }
    }

    .partner-logos {
        width: 100%;
        overflow: hidden;
        position: relative;
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    }

    .logo-track {
        display: flex;
        gap: 18px;
        width: calc(412px * 10); /* (card width + gap) * number of logos * 2 */
        animation: scroll 40s linear infinite;
        position: relative;
        padding-bottom: 20px;
    }

    .partner-logo-card {
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
        min-width: 190px;
        max-width: 190px;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }

    .partner-logo-card img {
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
        object-fit: contain;
    }

    .apply-button {
        background-color: var(--sub-70, #006DFE);
        color: var(--gray-10, #FFF);
        text-align: center;
        font-family: "Pretendard Variable";
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.44px;
        border: none;
        border-radius: 50px;
        text-align: center;
        cursor: pointer;
        box-shadow: 0px 0px 16px 0px rgba(102, 102, 102, 0.3);
        text-decoration: none;
        display: flex;
        width: 280px;
        padding: 15px 10px;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
}
