/* ──────────────── Hero Banner Slider ──────────────── */
.hero {
    /*margin-top: 64px; !* 🎯 헤더 높이만큼 여백 추가 *!*/
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero.full-bleed {
    /* 풀블리드이지만, 양옆 오버행( +gutter*2 ) 제거 */
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}


.hero.full-bleed.clarte{
    /* 풀블리드이지만, 양옆 오버행( +gutter*2 ) 제거 */
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 200px;
    margin-bottom: 50px;
}


.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-track {
    display: flex;
    width: 400%; /* 4개 슬라이드 */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    position: relative;
    width: 25%; /* 각 슬라이드는 전체의 1/4 */
    height: 100%;
    flex-shrink: 0;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 첫 번째 슬라이드에만 표시되는 버튼 이미지 */
.btn-image-wrapper {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.btn-image {
    height: auto;
    max-height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-image:hover {
    transform: scale(1.05);
}

/* 슬라이더 화살표 */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--btn-primary-bg);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-arrow.prev {
    left: 20px;
}

.banner-arrow.next {
    right: 20px;
}

/* 인디케이터 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ──────────────── Video + Quick Card ──────────────── */
.video-section {
    padding: 60px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: minmax(0, 686px) 1fr;
    gap: 34px;
    align-items: start;
}

.video-grid iframe {
    width: 100%;
    max-width: 686px;
    height: 384px;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
}

.cards {
    display: flex;
    flex-direction: column;
    height: 384px;
    justify-content: space-between;
    gap: 20px;
}

.quick-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: 0.25s;
    flex: 1;
    position: relative;
    overflow: hidden;
    color: white;
}

.quick-card:first-child {
    background: linear-gradient(180deg, #518DFC 0%, #3B78E9 100%);
}

.quick-card:last-child {
    background: linear-gradient(180deg, #0DBEEA 0%, #08A7CE 100%);
}

.quick-card:hover {
    transform: translateY(-4px);
}

.quick-card .icon {
    font-size: 28px;
    color: white;
}

.quick-card h4 {
    font-size: 28px;
    margin-bottom: 6px;
    color: white;
}

.quick-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.quick-card::after {
    content: "";
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.quick-card:first-child::after {
    background-image: url('/images/775-bag.png');
}

.quick-card:last-child::after {
    background-image: url('/images/776-pen.png');
}

/* ──────────────── Icon Menu ──────────────── */
.icon-menu {
    display: grid;
    width: 100%;
    grid-template-columns: auto 1fr;    /* 1열: Q&A 박스, 2열: 아이콘섹션(남은 공간 채움) */
    column-gap: 85px;                   /* 두 섹션 사이 85px 고정 */
    align-items: start;                 /* 상단 기준 정렬 */
    padding: 36px 0 52px;               /* 기존 패딩 유지 */
}

.qna-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 245px;
    height: 100px;
    padding: 29px;                                /* 내부 패딩 29px */
    background: #F6F9FC;                          /* 배경색 변경 */
    border-radius: var(--radius);                 /* 8px */
    /* box-shadow: var(--shadow);                 그림자 제거 */
    text-decoration: none;
    color: var(--font-primary);                   /* #222222 */
    box-sizing: border-box;
}

.qna-button .qna-text {
    line-height: 1.2;
}

.qna-button .qna-text .brand {
    font-size: 18px;
    font-weight: 400;
    color: var(--font-primary);
    display: inline;
}

.qna-button .qna-text .qna-highlight {
    font-size: 18px;
    font-weight: 400;
    color: var(--btn-primary-bg);
    margin-bottom: 2px;
    display: inline;
    margin-left: 4px;
}

.qna-button .qna-text .question {
    font-size: 16px;
    margin-top: 8px;
    color: var(--font-primary);
    display: block;
}

/* 화살표 높이 14px, 비율 유지 */
.qna-button .arrow-icon {
    height: 14px;
    width: auto;
}

/* ───────── 원형 아이콘 섹션 ───────── */
.icon-circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;     /* 양쪽 마진 없이 동일 간격 정렬 */
    width: 100%;                        /* 전체 영역 사용 */
}

.icon-circle-container .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 0 0 auto;                     /* 고정 크기 유지 */
}

.icon-circle-container .item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.icon-circle-container .item span {
    font-size: 16px;
    line-height: 1.2;
}

/* ──────────────── Blue Section Wrapper (Best / New / Review) ──────────────── */
.blue-wrap {
    background: #ebf1ff;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 70px 0 40px;
    position: relative;
}

.blue-wrap.full-bleed {
    display: grid;
    grid-template-columns: var(--gutter) 1fr var(--gutter);
}

/* ──────────────── Best 섹션 전용 스타일 ──────────────── */
.blue-wrap.full-bleed.best-section {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 88px 88px 0 0 !important;
    background: linear-gradient(180deg, #518DFC 0%, #7EC1E4 100%) !important;
    padding: 100px 0 80px !important;
    margin-top: 50px;
    /* 내부 요소들이 올바르게 중앙 정렬되도록 grid 재설정 */
    display: grid;
    grid-template-columns: 1fr minmax(0, var(--content-max, 1220px)) 1fr;
    grid-template-areas: ". content .";
}

.blue-wrap.full-bleed.best-section .sec-title,
.blue-wrap.full-bleed.best-section .sec-sub {
    color: #ffffff;
}

/* ──────────────── 신상품 섹션 전용 스타일 ──────────────── */
.blue-wrap.full-bleed.new-section {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: transparent !important; /* 배경색 투명 */
    border-radius: 0 !important; /* 둥근 모서리 제거 */
    padding: 80px 0 !important;
    margin-top: 50px;
    margin-bottom: 50px;
    /* 내부 요소들이 올바르게 중앙 정렬되도록 grid 재설정 */
    display: grid;
    grid-template-columns: 1fr minmax(0, var(--content-max, 1220px)) 1fr;
    grid-template-areas: ". content .";
}

.blue-wrap.full-bleed.new-section .sec-title,
.blue-wrap.full-bleed.new-section .sec-sub {
    color: var(--font-primary); /* 검정색 텍스트 */
}

/* ──────────────── Best/New 섹션 카드 중앙 정렬 ──────────────── */
.blue-wrap.full-bleed.best-section .container,
.blue-wrap.full-bleed.new-section .container {
    grid-area: content;
    width: 100%;
    max-width: none; /* grid에서 이미 제한하므로 제거 */
    margin: 0;
}

/* Best/New 섹션은 기존 슬라이더 방식 그대로 사용 */
.blue-wrap.full-bleed.best-section .slider-track,
.blue-wrap.full-bleed.new-section .slider-track {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

/* Best/New 섹션 카드 스타일 */
.blue-wrap.full-bleed.best-section .common-card,
.blue-wrap.full-bleed.new-section .common-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
}

/* ──────────────── 랭킹 이미지 스타일 (베스트 섹션만) ──────────────── */
.rank-badge {
    position: absolute;
    top: -3px;
    width: 40px;
    height: 40px;
    z-index: 20;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    visibility: visible;
}

.rank-badge.rank-1 {
    background-image: url('/images/rank1.png');
}

.rank-badge.rank-2 {
    background-image: url('/images/rank2.png');
}

.rank-badge.rank-3 {
    background-image: url('/images/rank3.png');
}

.rank-badge.rank-4 {
    background-image: url('/images/rank4.png');
}

/* 기존 best-badge 숨기기 */
.best-badge {
    display: none !important;
}

.common-card .card-discount {
    color: #DF0000; /* 🎯 새로운 할인 색상 적용 */
    font-weight: 700;
}

/* ──────────────── Section Title ──────────────── */
.sec-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sec-sub {
    text-align: center;
    font-size: 14px;
    color: var(--font-light);
    margin-bottom: 34px;
}

/* ──────────────── Slider (scroll-snap) ──────────────── */
.slider-wrapper {
    position: relative;
}

.arrow-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 46px;
    height: 40px;
    border-radius: 50%;
    background: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 10;
}

.blue-wrap.full-bleed > .container {
    grid-column: 2;
    width: 100%;
    max-width: var(--content-max);
    padding-inline: 0;
}

.blue-wrap.full-bleed .slider-wrapper {
    overflow: visible;
    box-sizing: content-box;
}

.blue-wrap.full-bleed .arrow-btn.prev {
    left: 0;
    transform: translateX(calc(-1 * var(--arrow-gap)));
}

.blue-wrap.full-bleed .arrow-btn.next {
    right: 0;
    transform: translateX(var(--arrow-gap));
}

.blue-wrap .slider-wrapper {
    width: 100%;
}

.blue-wrap .slider-track {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.slider-track::-webkit-scrollbar {
    display: none;
}


/* ──────────────── BEST 섹션 API 연동 추가 스타일 ──────────────── */
/* BEST 섹션 슬라이더 네비게이션 */
.best-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.best-arrow-btn {
    background: var(--input-bg);
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.best-arrow-btn:hover {
    transform: scale(1.1);
}

.best-arrow-btn i {
    color: #333;
    font-size: 1rem;
}

/* ──────────────── 신상품 섹션 API 연동 추가 스타일 ──────────────── */
/* 신상품 섹션 슬라이더 네비게이션 */
.new-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
}

.new-arrow-btn {
    background: var(--input-bg);
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.new-arrow-btn:hover {
    transform: scale(1.1);
}

.new-arrow-btn i {
    color: #333;
    font-size: 1rem;
}

/* 로딩, 에러, 빈 상태 메시지 */
.loading-message,
.no-products-message,
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: 100%;
    color: var(--font-primary);
    text-align: center;
}

.loading-message p,
.no-products-message p,
.error-message p {
    font-size: 16px;
    margin: 0;
    color: var(--font-light);
}

/* 재시도 버튼 */
.retry-btn {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    margin-top: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.retry-btn:hover {
    transform: translateY(-2px);
}

/* ──────────────── Banner ──────────────── */
.banner {
    width: 100%;
    border-radius: var(--radius);
    background: #282C3D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 80px 30px 60px;
    margin: 90px auto;
    box-shadow: var(--shadow);
}

.banner.blue {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.banner h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFF879;
}

.banner p {
    font-size: 14px;
    opacity: 0.9;
    color: #FFFFFF;
}

.banner img {
    width: 120px;
}

body.home-page header.scrolled + section.hero {
    margin-top: 64px;
}


@media (max-width: 1660px) {
    .quick-card::after {
        display: none;
    }
}
/* ──────────────── Responsive ──────────────── */
@media (max-width: 1200px) {
    .icon-menu {
        column-gap: 60px;
    }

    .qna-button {
        width: 220px;
        height: 90px;
        padding: 24px;
    }

    .qna-button .qna-text .brand,
    .qna-button .qna-text .qna-highlight {
        font-size: 17px;
    }

    .qna-button .qna-text .question {
        font-size: 15px;
    }

    .icon-circle-container .item img {
        width: 90px;
        height: 90px;
    }

    .icon-circle-container .item span {
        font-size: 15px;
    }

    /* Best/New 섹션 반응형 */
    .blue-wrap.full-bleed.best-section .common-card,
    .blue-wrap.full-bleed.new-section .common-card {
        flex: 0 0 260px;
    }

    .rank-badge {
        width: 35px;
        height: 35px;
        top: 8px;
        left: 8px;
    }
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .btn-image-wrapper {
        bottom: 40px;
        left: 40px;
    }

    .btn-image {
        max-height: 50px;
    }

    .quick-card::after {
        bottom: 20px;
        right: 20px;
    }

    .icon-menu {
        column-gap: 40px;
        padding: 30px 0 40px;
    }

    .qna-button {
        width: 200px;
        height: 80px;
        padding: 20px;
    }

    .qna-button .qna-text .brand,
    .qna-button .qna-text .qna-highlight {
        font-size: 16px;
    }

    .qna-button .qna-text .question {
        font-size: 14px;
        margin-top: 6px;
    }

    .qna-button .arrow-icon {
        height: 12px;
    }

    .icon-circle-container .item img {
        width: 80px;
        height: 80px;
    }

    .icon-circle-container .item span {
        font-size: 14px;
    }

    .icon-circle-container .item {
        gap: 6px;
    }

    /* BEST/NEW 섹션 반응형 */
    .best-arrow-btn,
    .new-arrow-btn {
        width: 40px;
        height: 35px;
    }

    .blue-wrap.full-bleed.best-section .common-card,
    .blue-wrap.full-bleed.new-section .common-card {
        flex: 0 0 240px;
    }

    .rank-badge {
        width: 32px;
        height: 32px;
        top: 6px;
        left: 6px;
    }
}

@media (max-width: 768px) {
    .blue-wrap {
        border-radius: 40px 40px 0 0;
    }

    .banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .banner-arrow.prev {
        left: 10px;
    }

    .banner-arrow.next {
        right: 10px;
    }

    .btn-image-wrapper {
        bottom: 30px;
        left: 30px;
    }

    .btn-image {
        max-height: 40px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .quick-card {
        padding: 20px;
    }

    .quick-card h4 {
        font-size: 24px;
    }

    .quick-card::after {
        width: 60px;
        height: 60px;
        bottom: 16px;
        right: 16px;
    }

    .icon-menu {
        grid-template-columns: 1fr;    /* 세로 배치로 변경 */
        column-gap: 0;
        row-gap: 30px;
        padding: 25px 0 35px;
        justify-items: center;
    }

    .qna-button {
        width: 100%;
        max-width: 320px;
        height: 70px;
        padding: 18px 24px;
    }

    .qna-button .qna-text .brand,
    .qna-button .qna-text .qna-highlight {
        font-size: 15px;
    }

    .qna-button .qna-text .question {
        font-size: 13px;
        margin-top: 4px;
    }

    .qna-button .arrow-icon {
        height: 11px;
    }

    .icon-circle-container {
        justify-content: space-around;
        gap: 15px;
    }

    .icon-circle-container .item img {
        width: 70px;
        height: 70px;
    }

    .icon-circle-container .item span {
        font-size: 13px;
    }

    .icon-circle-container .item {
        gap: 5px;
        flex: 0 0 calc(33.333% - 10px);
        max-width: 100px;
    }

    /* BEST/NEW 섹션 반응형 */
    .best-arrow-btn,
    .new-arrow-btn {
        width: 35px;
        height: 30px;
    }

    .best-arrow-btn i,
    .new-arrow-btn i {
        font-size: 0.9rem;
    }

    .best-slider-nav,
    .new-slider-nav {
        padding: 0 10px;
    }

    .blue-wrap.full-bleed.best-section .common-card,
    .blue-wrap.full-bleed.new-section .common-card {
        flex: 0 0 calc(50% - 5px);
        min-width: 200px;
    }

    .rank-badge {
        width: 28px;
        height: 28px;
        top: 5px;
        left: 5px;
    }
}


/* 첫 번째 슬라이드에만 표시되는 오버레이 이미지 컨테이너 */
.banner-overlay-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* 클라떼 텍스트 이미지 */
.banner-overlay-images .overlay-text {
    position: absolute;
    left: var(--gutter, 20px);
    top: 30%;
    width: 550px;
    height: auto;
    z-index: 6;
}

/* 클라떼 A 이미지 */
.banner-overlay-images .overlay-a {
    position: absolute;
    left: var(--gutter, 20px);
    top: calc(40% + 160px);
    width: 300px;;
    height: auto;
    z-index: 6;
}

/* 활성화된 첫 번째 슬라이드에만 표시 */
.banner-slide.active .banner-overlay-images {
    opacity: 1;
    visibility: visible;
}

/* 비활성화된 슬라이드에서는 숨기기 */
.banner-slide:not(.active) .banner-overlay-images {
    opacity: 0;
    visibility: hidden;
}

/* ──────────────── 신상품 섹션 전용 스타일 ──────────────── */
.blue-wrap.full-bleed.new-section {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #ebf1ff !important; /* 베스트와 동일한 배경색 */
    border-radius: 88px 88px 0 0 !important; /* 베스트와 동일한 둥근 모서리 */
    padding: 100px 0 80px !important; /* 베스트와 동일한 패딩 */
    margin-top: 50px;
    margin-bottom: 50px;
    /* 내부 요소들이 올바르게 중앙 정렬되도록 grid 재설정 */
    display: grid;
    grid-template-columns: 1fr minmax(0, var(--content-max, 1220px)) 1fr;
    grid-template-areas: ". content .";
}

.blue-wrap.full-bleed.new-section .sec-title,
.blue-wrap.full-bleed.new-section .sec-sub {
    color: var(--font-primary); /* 검정색 텍스트 */
}
@media (max-width: 1700px) {
    .banner-overlay-images .overlay-text {
        width: 450px;
        top: 35%;
    }

    .banner-overlay-images .overlay-a {
        width: 270px;
    }
}

@media (max-width: 1000px) {
    .banner-overlay-images .overlay-text {
        width: 380px;
        top: 40%;
    }

    .banner-overlay-images .overlay-a {
        width: 250px;
        height: auto;
    }
}
/* 반응형 */
@media (max-width: 768px) {
    .banner-overlay-images .overlay-text {
        width: 280px;
        top: 35%;
    }

    .banner-overlay-images .overlay-a {
        width: 120px;
        top: calc(35% + 70px);
    }
}

@media (max-width: 480px) {
    .banner-overlay-images .overlay-text {
        width: 220px;
        top: 30%;
    }

    .banner-overlay-images .overlay-a {
        width: 90px;
        top: calc(30% + 55px);
    }
}
@media (max-width: 480px) {
    .icon-menu {
        padding: 20px 0 30px;
        row-gap: 25px;
    }

    .qna-button {
        height: 60px;
        padding: 15px 20px;
    }

    .qna-button .qna-text .brand,
    .qna-button .qna-text .qna-highlight {
        font-size: 14px;
    }

    .qna-button .qna-text .question {
        font-size: 12px;
    }

    .qna-button .arrow-icon {
        height: 10px;
    }

    .icon-circle-container .item img {
        width: 60px;
        height: 60px;
    }

    .icon-circle-container .item span {
        font-size: 12px;
    }

    .icon-circle-container .item {
        flex: 0 0 calc(50% - 10px);
        max-width: 80px;
    }

    .quick-card {
        padding: 16px;
    }

    .quick-card h4 {
        font-size: 20px;
    }

    .quick-card p {
        font-size: 13px;
    }

    .quick-card::after {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }

    /* BEST/NEW 섹션 반응형 */
    .best-arrow-btn,
    .new-arrow-btn {
        width: 30px;
        height: 25px;
    }

    .best-arrow-btn i,
    .new-arrow-btn i {
        font-size: 0.8rem;
    }

    .blue-wrap.full-bleed.best-section .common-card,
    .blue-wrap.full-bleed.new-section .common-card {
        flex: 0 0 calc(50% - 5px);
        min-width: 180px;
    }

    .rank-badge {
        width: 24px;
        height: 24px;
        top: 4px;
        left: 4px;
    }
}