/* =============================
   milano2026.css   
   ============================= */


/* base */
.grid--12 {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.col-3 {
    grid-column: span 3;
}

.divider {
    position: relative;
}

.divider::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -18px;
    width: 1px;
    height: auto;
    background-color: #E6E6E6;
}

.thumb_img:after {
    border-radius: inherit;
}

.thumb_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: top;
}

.milano2026-main {
    width: 1200px;
    margin: 0 auto 80px;
}

.milano2026-main>section+section {
    margin-top: 70px;
}

.section-title {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 6px;
    padding: 24px 0;
    font-size: 26px;
    font-weight: 700;
}

.section-title::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: auto;
    height: 4px;
    background: linear-gradient(to right,
            #08acbe 0%,
            #047888 34.7%,
            #06a6c5 56.9%,
            #04d7eb 76.6%,
            #41bb5c 100%);
}

.section-title--arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: url(../img/milano2026/ico-arrow-r-26.svg) no-repeat;
}

.section-title__link {
    display: block;
    width: 100%;
}

.section-title__link:hover {
    text-decoration: none;
}

.article-list--vertical .article-list__link {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.article-list__link:hover {
    text-decoration: none;
}

.article-list__link:hover .tit_thumb {
    text-decoration: underline;
}

.article-list__body {
    display: block;
    margin-top: 8px;
}

.tit_thumb {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.36;
    overflow: hidden;
}

.article-list__meta {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: #888;
}

/* header */
.milano2026-header {
    position: relative;
    margin-bottom: 60px;
    background: url(../img/milano2026/bg-top-milano2026.png) no-repeat center / cover;
}

.milano2026-header::after,
.milano2026-header::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
}

.milano2026-header::before {
    background: url(../img/milano2026/bg-top-rectangle-milano2026.png) no-repeat;
}

.milano2026-header::after {
    background: linear-gradient(to bottom, rgba(0, 55, 62, 0), rgba(0, 64, 74, .8));
}

.milano2026-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    position: relative;
    height: 220px;
    margin: 0 auto;
    z-index: 1;
}

.milano2026-header__title {
    width: 637px;
    height: 85px;
    background: url(../img/milano2026/title-top-milano2026.png) no-repeat;
}

.milano2026-header__date {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #fff;
}

.milano2026-header__date p {
    display: inline-block;
    font-size: 14px;
}

.milano2026-header__medal {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 322px;
    height: 60px;
    padding: 0 16px;
    background: rgba(255, 255, 255, .3);
}

.ico-korea {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
}

.ico-korea::before {
    content: "";
    display: inline-block;
    width: 37px;
    height: 24px;
    margin-right: 8px;
    background: url(../img/milano2026/ico-flag-korea.svg) no-repeat left center;
}

.ico-korea .rank-num {
    font-size: 20px;
    font-weight: 500;
    color: #6DECF3;
    margin-left: 4px;
}

.milano2026-header__list {
    display: flex;
    gap: 8px;
}

.milano2026-header__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-weight: 600;
    ;
    color: rgba(0, 0, 0, 0.6);
    background-repeat: no-repeat;
}

.milano2026-header__item--gold {
    background-image: url(../img/milano2026/ico-medal-gold.svg);
}

.milano2026-header__item--silver {
    background-image: url(../img/milano2026/ico-medal-silver.svg);
}

.milano2026-header__item--bronze {
    background-image: url(../img/milano2026/ico-medal-bronze.svg);
}

/* 탑 기사3 */
.milano2026-hero {
    display: flex;
    gap: 36px;
}

.milano2026-top3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 32px 36px;
}

.milano2026-top3__link {
    width: 272px;
}

.milano2026-top3__link .thumb_img {
    height: 170px;
}

.milano2026-top3__link .tit_thumb {
    font-size: 18px;
}

.milano2026-top3--top1 {
    position: relative;
    grid-row: span 2;
}

.milano2026-top3--top1.divider::before {
    left: unset;
    right: -18px;
}

.milano2026-top3--top1 .milano2026-top3__link {
    width: 584px;
}

.milano2026-top3--top1 .milano2026-top3__link:hover {
    text-decoration: underline 2px;
}

.milano2026-top3--top1 .thumb_img {
    width: 584px;
    height: 365px;
}

.milano2026-top3--top1 .tit_thumb {
    font-size: 32px;
    font-weight: 600;
}

/* 메달 순위 차트 */
.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(178, 219, 255, 0.4) 100%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.message {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #8daac3;
}

.milano2026-medal {
    position: relative;
    flex-shrink: 0;
    width: 272px;
}

.milano2026-medal .section-title {
    font-size: 20px;
    padding: 14px 0;
}

.milano2026-medal__wrapper {
    position: relative;
    width: 272px;
    border-radius: 6px;
    overflow: hidden;
}

.milano2026-medal__body {
    width: 272px;
}

.milano2026-medal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.milano2026-medal__table thead th {
    padding: 6px 10px 10px;
    text-align: center;
    font-weight: 600;
    color: #111;
    border-bottom: 1px solid #BEDDE1;
}

.milano2026-medal__table thead th.col-rank {
    text-align: left;
}

.milano2026-medal__table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.milano2026-medal__table td:first-child {
    padding-left: 12px;
    padding-right: 2px;
    text-align: center;
    font-weight: 500;
}

.milano2026-medal__table td:nth-child(2) {
    text-align: left;
}

.milano2026-medal__table tr.highlight {
    background-color: #E7F7F9;
}

.milano2026-medal__table tr:last-child td {
    border-bottom: none;
}

.milano2026-medal__table tr.highlight td {
    border-bottom: 1px solid #BEDDE1;
}

.gold {
    color: #f1b31a;
    font-weight: 500;
}

.silver {
    color: #949494;
    font-weight: 500;
}

.bronze {
    color: #c47b59;
    font-weight: 500;
}

.total {
    font-weight: 600;
}

/* 경기일정 보러가기 배너 */
.milano2026-banner {
    display: block;
    position: relative;
}

.milano2026-banner a::before {
    content: "";
    display: block;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 288px;
    height: 60px;
    background: url(../img/milano2026/bnr-milano2026-1200-title.png) no-repeat;
}

/* 2026 밀라노-코르티나 현장 */
.milano2026-news3 .article-list__item:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -18px;
    bottom: 0;
    width: 1px;
    height: auto;
    background-color: #E6E6E6;
}

/* 2026 밀라노-코르티나 소식 - tab */
.tabs {
    width: 100%;
}

.tabs__list {
    display: flex;
}

.tabs__tab {
    position: relative;
    width: 50%;
    padding: 9px 16px;
    font-size: 20px;
    font-weight: 500;
    color: #686868;
    background: #F2F2F2;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.tabs__tab:hover {
    color: var(--text-primary, #111);
    background: #e9e9e9;
}

.tabs__tab[aria-controls="tab-panel-1"] {
    border-radius: 4px 0 0 4px;
}

.tabs__tab[aria-controls="tab-panel-2"] {
    border-radius: 0 4px 4px 0;
}

/* 활성 탭 */
.tabs__tab.is-active,
.tabs__tab[aria-selected="true"] {
    color: #fff;
    background: #147982;
}

.tabs__content {
    margin-top: 36px;
}

.tabs__panel {
    display: none;
}

.tabs__panel.is-active {
    display: block;
}

.tabs__panel[hidden] {
    display: none;
}

/* 2026 밀라노-코르티나 소식 - 기사 목록 */
.milano2026-newstab .thumb_img {
    flex-shrink: 0;
    width: 200px;
    height: 125px;
}

.milano2026-newstab .tit_thumb {
    font-size: 20px;
}

.milano2026-newstab .grid--12 {
    row-gap: 0;
}

.milano2026-newstab .divider::before {
    left: 50%;
}

.milano2026-newstab .article-list:nth-child(n + 3) {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E6E6E6;
}

/* 2026 밀라노-코르티나 정보 */
.milano2026-information__body {
    display: flex;
    gap: 36px;
    justify-content: space-between;
}

.milano2026-information__banner {
    position: relative;
    flex: 1;
    height: 105px;
    overflow: hidden;
}

.milano2026-information__banner a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    transition: all 0.5s;
}

.milano2026-information__banner a:hover {
    background-color: #e9f3f3;
}

.milano2026-information__banner a::before,
.milano2026-information__banner a::after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 9;
    transition: all 0.5s;
    z-index: 9;
}

.milano2026-information__banner--left a::before {
    top: 0;
    left: -20px;
    width: 139px;
    height: 70px;
    background-image: url(../img/milano2026/bnr-milano2026-left-bg1.png);
}

.milano2026-information__banner--left a::after {
    top: 0;
    right: -20px;
    width: 193px;
    height: 105px;
    background-image: url(../img/milano2026/bnr-milano2026-left-bg2.png);
}

.milano2026-information__banner--right a::before {
    top: 0;
    right: 0;
    width: 650px;
    height: 74px;
    background-image: url(../img/milano2026/bnr-milano2026-right-bg1.png);
}

.milano2026-information__banner--right a::after {
    top: 0;
    right: 0;
    width: 200px;
    height: 105px;
    background-image: url(../img/milano2026/bnr-milano2026-right-bg2.png);
}

.milano2026-information__banner--left a:hover::before {
    top: 0;
    left: 0;
    width: 139px;
    height: 70px;
    background-image: url(../img/milano2026/bnr-milano2026-left-bg1.png);
}

.milano2026-information__banner--left a:hover::after {
    top: 0;
    right: 0;
    width: 193px;
    height: 105px;
    background-image: url(../img/milano2026/bnr-milano2026-left-bg2.png);
}

.milano2026-information__banner--right a:hover::before {
    top: 0;
    right: -20px;
    width: 650px;
    height: 74px;
    background-image: url(../img/milano2026/bnr-milano2026-right-bg1.png);
}

.milano2026-information__banner--right a:hover::after {
    top: 0;
    right: 20px;
    width: 200px;
    height: 105px;
    background-image: url(../img/milano2026/bnr-milano2026-right-bg2.png);
}


.milano2026-information_title {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 288px;
    height: 60px;
    background-repeat: no-repeat;
    z-index: 99;
    transition: all 0.4s;
}

.milano2026-information__banner a:hover .milano2026-information_title {
    left: 40px;
}

.milano2026-information__banner--left .milano2026-information_title {
    background-image: url(../img/milano2026/bnr-milano2026-581-title1.png);
}

.milano2026-information__banner--right .milano2026-information_title {
    background-image: url(../img/milano2026/bnr-milano2026-581-title2.png);
}

.milano2026-shorts .thumb_img {
    aspect-ratio: 9 / 16;
    border-radius: 8px;
}

.milano2026-shorts .thumb_img::after {
    top: 80%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    border: none;
    opacity: 1;
    z-index: 1;
}

.milano2026-shorts .thumb_img::before {
    content: '';
    display: block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 42px;
    height: 42px;
    ;
    background: url(../img/milano2026/ico-play-milano.svg) no-repeat;
    z-index: 99;
}