/* ==========================================================================
   academy-list.css — styles for the academy page (academy-list.html)
   Split out of style.css. Loaded AFTER style.css, so these rules win on this page.
   Shared blocks are copies here; the originals stay in style.css for other pages.
   ========================================================================== */

/* ========== Academy List Template ========== */
.academy-list-template {
    background: #fff;
}
.academy-list-section {
    padding: 96px 0 92px;
}
.academy-list-section .container {
    max-width: 1220px;
}
.academy-list-head {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    align-items: center;
    gap: 48px;
    margin-bottom: 54px;
}
.academy-list-head h1 {
    margin: 0;
    color: #151922;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 0;
}
.academy-list-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: wrap;
}
.academy-list-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    padding: 12px 30px;
    border-radius: 3px;
    background: #0718ee;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: 0 8px 18px rgba(7, 24, 238, .18);
    transition: transform .16s, box-shadow .16s, background .16s;
}
.academy-list-tabs a:hover {
    background: #0010d8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(7, 24, 238, .25);
}
.academy-list-tabs a.is-active {
    display: none;
}
.academy-news-list {
    display: grid;
    gap: 14px;
}
.academy-empty {
    padding: 30px 24px;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: 8px;
    background: #fff;
    color: #7b8190;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(14, 17, 24, .08);
}
.academy-news-item {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 18px 28px 18px 40px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 12px rgba(14, 17, 24, .14);
    color: #20242c;
    transition: transform .16s, box-shadow .16s;
}
.academy-news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(14, 17, 24, .18);
}
.academy-news-title {
    min-width: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}
.academy-news-arrow {
    color: #9d36e8;
    font-size: 34px;
    line-height: 1;
}
.academy-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 64px;
}
.academy-pagination .page-link {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-300);
    font-size: 13px;
    font-weight: 700;
    transition: background .16s, color .16s;
    padding: clamp(12px, 1.15vw, 22px) clamp(10px, 0.94vw, 18px);
}
.academy-pagination .page-link.is-active {
    color: var(--ink-900);
    background: rgba(17, 24, 39, .04);
}
.academy-pagination .page-link:not(.page-disabled):hover {
    color: var(--brand-purple);
    background: transparent;
}
.academy-pagination .page-disabled {
    opacity: .45;
    pointer-events: none;
}
/* ========== Responsive ========== */
@media (max-width: 860px) {
    .academy-list-section {
        padding: 58px 0 68px;
    }

    .academy-list-head {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }

    .academy-list-head h1 {
        font-size: 40px;
    }

    .academy-list-tabs {
        justify-content: flex-start;
        gap: 14px;
    }

    .academy-list-tabs a {
        min-width: 150px;
        min-height: 48px;
        font-size: 18px;
    }

    .academy-news-item {
        padding: 16px 18px;
    }

    .academy-news-title {
        font-size: 16px;
    }
}
@media (max-width: 560px) {
    .academy-list-section {
        padding: 44px 0 56px;
    }

    .academy-list-head h1 {
        font-size: 34px;
    }

    .academy-list-tabs {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .academy-list-tabs a {
        width: 100%;
    }

    .academy-news-item {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 15px 14px;
    }

    .academy-news-arrow {
        font-size: 26px;
    }

    .academy-pagination {
        margin-top: 42px;
        gap: 12px;
    }
}
@media (max-width: 860px) {
    .academy-list-template .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .academy-news-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
        word-break: break-word;
    }

    .academy-news-item {
        border-radius: 8px;
        padding-left: 20px;
        padding-right: 16px;
    }

    .academy-pagination {
        gap: 14px;
        margin-top: 48px;
        flex-wrap: wrap;
    }

    .academy-pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .academy-list-tabs a {
        min-height: 48px;
        padding: 10px 22px;
    }
}
@media (max-width: 560px) {
    .academy-list-head {
        gap: 20px;
        margin-bottom: 28px;
    }

    .academy-list-tabs {
        gap: 10px;
    }

    .academy-list-tabs a {
        min-height: 48px;
        font-size: 17px;
        padding: 12px 18px;
        min-width: 0;
    }

    .academy-news-item {
        min-height: 52px;
        padding: 14px 12px 14px 14px;
        gap: 8px;
        box-shadow: 0 3px 8px rgba(14, 17, 24, .12);
    }

    .academy-news-title {
        font-size: 15px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }

    .academy-news-arrow {
        font-size: 22px;
        flex-shrink: 0;
    }

    .academy-pagination {
        gap: 8px;
        margin-top: 36px;
        flex-wrap: wrap;
    }

    .academy-pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .academy-list-template .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .academy-empty {
        padding: 20px 14px;
        font-size: 14px;
    }
}
/* ============================================================
 * Final mobile overrides: keep this block at the end of the file.
 * ============================================================ */
@media (max-width: 860px) {
    .academy-list-section {
        padding: 42px 0 54px;
    }

    .academy-list-head {
        display: block;
        margin-bottom: 26px;
    }

    .academy-list-head h1 {
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 1.18;
        text-align: left;
    }

    .academy-list-tabs {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .academy-list-tabs a {
        display: inline-flex;
        width: 100%;
        min-width: auto;
        min-height: 40px;
        padding: 9px 8px;
        border-radius: 999px;
        background: #f3f6fb;
        color: #3f4654;
        font-size: 13px;
        font-weight: 800;
        box-shadow: none;
        white-space: nowrap;
        transform: none;
    }

    .academy-list-tabs a:hover,
    .academy-list-tabs a.is-active {
        background: #1b4fe0;
        color: #fff;
        box-shadow: 0 6px 14px rgba(27, 79, 224, .18);
        transform: none;
    }

    .academy-list-tabs a.is-active {
        display: none;
    }

    .academy-news-list {
        gap: 10px;
    }

    .academy-news-item {
        min-height: 54px;
        padding: 14px 14px 14px 16px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        border-radius: 8px;
    }

    .academy-news-title {
        font-size: 15px;
        line-height: 1.42;
    }

    .academy-news-arrow {
        font-size: 24px;
    }

    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }
}
/* ========== Lanhu page restore: download / contract / academy content only ========== */
body .software-template,
body .contract-template,
body .academy-list-template {
    --restore-blue: #044ff6;
    --restore-blue-2: #2051ff;
    --restore-text: #111827;
    --restore-muted: #6c788b;
    --restore-page: #f3f6f8;
    --restore-line: #8cafed;
    background: var(--restore-page);
    font-family: MiSans, "Noto Sans SC", var(--font-sans);
}
body .contract-hero,
body .academy-hero {
    position: relative;
    height: 360px;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 13% 9%, rgba(83, 121, 255, .62) 0 120px, transparent 121px),
        radial-gradient(circle at 18% 19%, rgba(83, 121, 255, .42) 0 42px, transparent 43px),
        linear-gradient(180deg, #0757ff 0%, #044ff6 100%);
}
body .contract-hero::before,
body .academy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 74%, rgba(255, 255, 255, .08) 74% 74.2%, transparent 74.2% 100%),
        linear-gradient(180deg, transparent 0 68%, rgba(143, 202, 255, .24) 68% 100%);
    opacity: .55;
}
body .contract-hero::after,
body .academy-hero::after {
    content: "";
    position: absolute;
    right: calc(50% - 820px);
    top: 0;
    width: 560px;
    height: 360px;
    background: url("../img/page-restore/contract-hero-object.png") center / contain no-repeat;
    opacity: .95;
}
body .academy-hero::after {
    top: 0;
    width: 590px;
    height: 360px;
    background-image: url("../img/page-restore/academy-hero-object.png");
}
body .contract-hero .container,
body .academy-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    height: 360px;
    min-height: 360px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
body .contract-hero h1,
body .academy-hero h1 {
    margin: 0 0 32px;
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
}
body .contract-hero p,
body .academy-hero p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}
body .academy-list-section {
    min-height: 1206px;
    padding: 90px 0 0;
    background: var(--restore-page);
}
body .academy-list-section .container {
    max-width: 1007px;
    padding: 0;
}
body .academy-list-head {
    display: flex;
    justify-content: center;
    margin: 0 0 52px;
}
body .academy-list-tabs {
    display: flex;
    gap: clamp(24px, 2.19vw, 42px);
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: visible;
}
body .academy-list-tabs a {
    display: inline-flex;
    min-width: clamp(107px, 9.9vw, 190px);
    height: clamp(38px, 3.54vw, 68px);
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: var(--restore-blue);
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1;
    border: 1px solid #7ea3ff;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}
body .academy-list-tabs a.is-active {
    display: inline-flex;
}
body .academy-list-tabs a:hover,
body .academy-list-tabs a.is-active {
    color: #fff;
    background: var(--restore-blue);
    border-color: var(--restore-blue);
    box-shadow: 0 10px 22px rgba(4, 79, 246, .18);
    transform: none;
}
body .academy-news-list {
    display: grid;
    gap: 0;
}
body .academy-news-item {
    display: grid;
    min-height: 99px;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 18px;
    padding: 36px 44px 28px 40px;
    color: #697487;
    border-radius: 16px;
    background: #fff;
    box-shadow: 4px 0 12px rgba(140, 175, 210, 1);
}
body .academy-news-item.is-open {
    min-height: 149px;
    align-items: start;
}
body .academy-news-item:hover {
    color: var(--restore-blue);
    transform: none;
}
body .academy-news-copy {
    display: grid;
    gap: 24px;
}
body .academy-news-title {
    display: block;
    color: inherit;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: initial;
}
body .academy-news-desc {
    display: block;
    color: #7c8798;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
body .academy-news-arrow {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #5379ff;
    font-size: 34px;
    line-height: 1;
}
body .academy-news-item.is-open .academy-news-arrow {
    transform: rotate(90deg);
}
body .academy-pagination {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 42px;
}
body .academy-pagination .page-link {
    min-width: 43px;
    height: 43px;
    color: #5c6472;
    border-radius: 50%;
    background: transparent;
}
body .academy-pagination .page-link.is-active {
    color: #5c6472;
    background: #dfe6f5;
}
body .academy-empty {
    padding: 42px 20px;
    color: #8a93a3;
    text-align: center;
    border-radius: 8px;
    background: #fff;
}
@media (max-width:1080px) {
    body .contract-hero,
    body .academy-hero,
    body .contract-hero .container,
    body .academy-hero .container {
        height: 260px;
        min-height: 260px;
    }

    body .contract-hero::after,
    body .academy-hero::after {
        right: -56px;
        top: 36px;
        width: 270px;
        height: 190px;
        opacity: .55;
    }

    body .contract-hero h1,
    body .academy-hero h1 {
        font-size: 32px;
    }

    body .contract-hero p,
    body .academy-hero p {
        font-size: 16px;
    }

    body .contract-template .contract-content,
    body .academy-list-section {
        min-height: 0;
        padding: 54px 0 58px;
    }

    body .academy-list-head {
        margin-bottom: 34px;
    }

    body .academy-list-tabs {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    body .academy-list-tabs a {
        width: auto;
        min-width: 0;
        height: 44px;
        font-size: 14px;
    }
}
@media (max-width:560px) {
    body .contract-hero,
    body .academy-hero,
    body .contract-hero .container,
    body .academy-hero .container {
        height: 220px;
        min-height: 220px;
    }

    body .contract-hero::after,
    body .academy-hero::after {
        right: -92px;
        width: 240px;
    }

    body .contract-hero h1,
    body .academy-hero h1 {
        font-size: 28px;
    }

    body .contract-hero p,
    body .academy-hero p {
        font-size: 14px;
    }

    body .academy-list-tabs {
        grid-template-columns: 1fr;
    }

    body .academy-list-tabs a.is-active {
        display: inline-flex;
    }

    body .academy-news-item {
        min-height: 64px;
        padding: 17px 16px;
        grid-template-columns: minmax(0, 1fr) 22px;
    }

    body .academy-news-title {
        font-size: 15px;
    }

    body .academy-news-desc {
        font-size: 12px;
    }

    body .academy-news-arrow {
        width: 22px;
        height: 22px;
        font-size: 26px;
    }

    body .academy-pagination {
        gap: 10px;
        margin-top: 34px;
    }
}
/* ============================================================
 * Mobile final pass: navigation, CTA, content lists and detail pages
 * ============================================================ */
@media (max-width: 860px) {
    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }
}

/* ========== Calendar-style image hero (overrides page-restore gradient hero) ========== */
body .academy-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: clamp(74px, 6.82vw, 131px) 0 clamp(65px, 5.99vw, 115px);
    text-align: center;
    background: url(../img/academy/academy-hero-bg.webp) center top / 100% auto no-repeat;
}
body .academy-hero::before,
body .academy-hero::after {
    display: none;
}
body .academy-hero .container {
    display: block;
    height: auto;
    min-height: 0;
}
body .academy-hero h1 {
    margin: 0 0 clamp(20px, 1.82vw, 35px);
    color: #fff;
    font-size: clamp(32px, 2.92vw, 56px);
    font-weight: 900;
    line-height: 1.1;
}
body .academy-hero p {
    margin: 0;
    color: #fff;
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 1079px) {
    body .academy-hero {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: clamp(98px, 26.2vw, 283px);
        padding: 0;
        overflow: hidden;
        text-align: center;
        background: url(../img/academy/academy-hero-mobile.webp) center top / cover no-repeat;
    }

    body .academy-hero::before,
    body .academy-hero::after {
        display: none;
    }

    body .academy-hero .container {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0 18px;
    }

    body .academy-hero h1 {
        margin: 0 0 clamp(11px, 2.87vw, 31px);
        color: #fff;
        font-size: clamp(19px, 5.19vw, 56px);
        font-weight: 800;
        line-height: 1.22;
        letter-spacing: 0;
    }

    body .academy-hero p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 400;
        line-height: 1.45;
    }
}

/* ========== Academy records align with analysis list rows ========== */
body .academy-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body .academy-news-item,
body .academy-news-item.is-open {
    display: flex;
    min-height: 0;
    height: clamp(72px, 5.156vw, 99px);
    align-items: center;
    gap: clamp(14px, .99vw, 19px);
    padding: 0 clamp(32px, 2.5vw, 48px) 0 clamp(24px, 1.823vw, 35px);
    overflow: hidden;
    color: #686e7f;
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    font-family: MiSans-Semibold, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 600;
    line-height: 1;
    transform: none;
    transition: box-shadow .15s ease;
}
body .academy-news-item + .academy-news-item {
    margin-top: -2px;
}
body .academy-news-item::before {
    content: "";
    flex: 0 0 clamp(14px, .938vw, 18px);
    width: clamp(14px, .938vw, 18px);
    height: clamp(14px, .938vw, 18px);
    border-radius: 50%;
    background: #5379ff;
}
body .academy-news-item:hover {
    color: #686e7f;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    transform: none;
}
body .academy-news-copy {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}
body .academy-news-title {
    display: block;
    overflow: hidden;
    color: #686e7f;
    font-family: MiSans-Semibold, MiSans, var(--font-sans);
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 600;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body .academy-news-desc {
    display: none;
}
body .academy-news-arrow,
body .academy-news-item.is-open .academy-news-arrow {
    flex: 0 0 16px;
    width: 16px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #5379ff;
    font-size: 28px;
    line-height: 1;
    transform: none;
}
@media (max-width: 860px) {
    body .academy-news-list {
        gap: 10px;
    }

    body .academy-news-item,
    body .academy-news-item.is-open {
        height: auto;
        min-height: 56px;
        gap: 12px;
        padding: 14px 18px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(14, 17, 24, .08);
    }

    body .academy-news-item + .academy-news-item {
        margin-top: 0;
    }

    body .academy-news-item::before {
        flex-basis: 10px;
        width: 10px;
        height: 10px;
    }

    body .academy-news-title {
        display: -webkit-box;
        font-size: 15px;
        line-height: 1.4;
        white-space: normal;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    body .academy-news-arrow,
    body .academy-news-item.is-open .academy-news-arrow {
        flex-basis: 14px;
        width: 14px;
        height: 14px;
        font-size: 22px;
    }
}
@media (max-width: 560px) {
    body .academy-news-item,
    body .academy-news-item.is-open {
        min-height: 52px;
        gap: 10px;
        padding: 12px 14px;
    }

    body .academy-news-item::before {
        flex-basis: 8px;
        width: 8px;
        height: 8px;
    }

    body .academy-news-title {
        font-size: 14px;
    }
}

body .academy-list-template,
body .academy-list-section {
    background: #f3f6f8;
}
body .academy-list-section {
    min-height: 0;
    /* padding-bottom: clamp(54px, 5vw, 96px); */
    padding: clamp(51px, 4.69vw, 90px) 0 0;
}

.academy-pagination .page-link:first-child,
.academy-pagination .page-link:last-child {
    font-size: 0;
}
.academy-pagination .page-link:first-child::before,
.academy-pagination .page-link:last-child::before {
    content: "";
    display: block;
    width: clamp(5px, 0.47vw, 9px);
    height: clamp(9px, 0.83vw, 16px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.academy-pagination .page-link:first-child::before {
    background-image: url("../img/common/pagination-arrow-left.webp");
}
.academy-pagination .page-link:last-child::before {
    background-image: url("../img/common/pagination-arrow-right.webp");
}

/* ========== Academy mobile content adaptation ========== */
@media (max-width: 1079px) {
    body .academy-list-template,
    body .academy-list-section {
        background: #f3f6f8;
    }

    body .academy-list-section {
        min-height: 0;
        padding: clamp(28px, 7.59vw, 82px) 0 0;
    }

    body .academy-list-section .container,
    body .academy-list-template .container {
        width: 100%;
        max-width: 640px;
        padding-left: clamp(12px, 3.15vw, 34px);
        padding-right: clamp(12px, 3.15vw, 34px);
    }

    body .academy-list-head {
        display: block;
        margin: 0 0 clamp(17px, 4.44vw, 48px);
    }

    body .academy-list-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: clamp(14px, 3.8vw, 41px);
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body .academy-list-tabs::-webkit-scrollbar {
        display: none;
    }

    body .academy-list-tabs a,
    body .academy-list-tabs a.is-active {
        display: inline-flex;
        /* flex: 0 0 109px; */
        align-items: center;
        justify-content: center;
        width: clamp(66px, 17.7vw, 191.15px);
        min-width: clamp(66px, 17.7vw, 191.15px);
        min-height: clamp(24px, 6.3vw, 68px);
        height: clamp(24px, 6.3vw, 68px);
        padding: 0 clamp(17px, 4.44vw, 48px);
        border: 1px solid #5f8cff;
        border-radius: 999px;
        background: transparent;
        color: #0955ff;
        font-size: clamp(8px, 2.22vw, 24px);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        box-shadow: none;
        transform: none;
    }

    body .academy-list-tabs a:hover,
    body .academy-list-tabs a.is-active {
        border-color: #0955ff;
        background: #0955ff;
        color: #fff;
        box-shadow: none;
        transform: none;
    }

    body .academy-news-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    body .academy-news-item,
    body .academy-news-item.is-open {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 56px;
        height: auto;
        gap: 0;
        padding: 14px 18px 14px 34px;
        overflow: hidden;
        border: 0;
        border-radius: 8px;
        background: #fff;
        color: #687082;
        box-shadow: 0 3px 10px rgba(92, 116, 140, .14);
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        transform: none;
        transition: none;
    }

    body .academy-news-item:hover,
    body .academy-news-item.is-open:hover {
        color: #687082;
        box-shadow: 0 3px 10px rgba(92, 116, 140, .14);
        transform: none;
    }

    body .academy-news-item + .academy-news-item {
        margin-top: 0;
    }

    body .academy-news-item::before {
        content: "";
        position: absolute;
        left: 13px;
        top: 50%;
        width: 10px;
        height: 10px;
        flex: none;
        border-radius: 50%;
        background: #5379FF;
        transform: translateY(-50%);
    }

    body .academy-news-item.is-open {
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 14px 18px 14px 34px;
    }

    body .academy-news-item.is-open::before {
        display: block;
    }

    body .academy-news-copy {
        display: block;
        min-width: 0;
    }

    body .academy-news-title {
        display: block;
        min-width: 0;
        overflow: hidden;
        color: #82889A;
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 700;
        line-height: 1.42;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body .academy-news-item.is-open .academy-news-title {
        margin-bottom: 0;
        white-space: nowrap;
    }

    body .academy-news-desc {
        display: none;
    }

    body .academy-news-arrow,
    body .academy-news-item.is-open .academy-news-arrow {
        position: static;
        display: inline-flex;
        flex: 0 0 18px;
        width: clamp(9px, 2.44vw, 26.37px);
        height: auto;
        align-items: center;
        justify-content: center;
        color: #5f86ff;
        font-size: 28px;
        font-weight: 300;
        line-height: 1;
        transform: none;
    }

    body .academy-news-item.is-open .academy-news-arrow {
        position: static;
        transform: none;
    }

    body .academy-pagination {
        display: flex;
        align-items: center;
        justify-content: center !important;
        gap: 32px;
        margin: clamp(28px, 7.59vw, 82px) 0 0;
        padding: 0;
        overflow: visible;
        flex-wrap: nowrap;
    }

    body .academy-pagination .page-link {
        display: inline-flex;
        flex: 0 0 40px;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        background: transparent;
        color: #222833;
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 400;
        line-height: 1;
        box-shadow: none;
    }

    body .academy-pagination .page-link.is-active {
        background: #e5ebfb;
        color: #222833;
    }

    body .academy-pagination .page-link:first-child,
    body .academy-pagination .page-link:last-child {
        color: #b9cdfb;
    }
}

@media (max-width: 374px) {
    body .academy-list-section .container,
    body .academy-list-template .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body .academy-list-tabs {
        gap: 12px;
        justify-content: flex-start;
    }

    body .academy-list-tabs a,
    body .academy-list-tabs a.is-active {
        flex-basis: 96px;
        width: 96px;
        min-width: 96px;
        font-size: 12px;
    }

    body .academy-news-title {
        font-size: 15px;
    }

    body .academy-news-desc {
        font-size: 13px;
    }
}
