/* فرانت گرید — چیدمان CSS Grid + انیمیشن */

.hpb-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    direction: rtl;
}

.hpb-grid__inner {
    display: grid;
    grid-template-columns: repeat(var(--hpb-cols, 4), minmax(0, 1fr));
    gap: var(--hpb-gap, 16px);
    grid-auto-rows: minmax(var(--hpb-row-min, 180px), auto);
}

@media (max-width: 1024px) {
    .hpb-grid__inner {
        grid-template-columns: repeat(var(--hpb-cols-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hpb-grid__inner {
        grid-template-columns: repeat(var(--hpb-cols-mobile, 1), minmax(0, 1fr));
    }

    .hpb-grid:not(.hpb-grid--partners-diamond) .hpb-grid__item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

.hpb-grid__item {
    min-width: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--hpb-stagger, 0ms);
}

.hpb-grid--revealed .hpb-grid__item,
.hpb-grid__item.is-visible {
    opacity: 1;
    transform: none;
}

.hpb-grid--equal-height .hpb-grid__item {
    display: flex;
}

.hpb-grid--equal-height .hpb-grid__item > * {
    flex: 1 1 auto;
    width: 100%;
}

/* قالب‌ها — دسکتاپ */
.hpb-grid--feature-start .hpb-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.hpb-grid--feature-end .hpb-grid__item:last-child {
    grid-column: span 2;
    grid-row: span 2;
}

.hpb-grid--bento .hpb-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.hpb-grid--mosaic .hpb-grid__item:nth-child(6n + 1),
.hpb-grid--mosaic .hpb-grid__item:nth-child(6n + 4) {
    grid-column: span 2;
    grid-row: span 2;
}

.hpb-grid--magazine .hpb-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.hpb-grid--magazine .hpb-grid__item:nth-child(2),
.hpb-grid--magazine .hpb-grid__item:nth-child(3) {
    grid-column: span 1;
}

/* لوگوی شریک — چیدمان الماس (۱۱ آیتم، ۴ ستون × ۵ ردیف) */
.hpb-grid--partners-diamond .hpb-grid__inner {
    direction: ltr;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(1) {
    grid-column: 3;
    grid-row: 1;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(7) {
    grid-column: 4;
    grid-row: 3;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(8) {
    grid-column: 2;
    grid-row: 4;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(9) {
    grid-column: 3;
    grid-row: 4;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(10) {
    grid-column: 4;
    grid-row: 4;
}

.hpb-grid--partners-diamond .hpb-grid__item:nth-child(11) {
    grid-column: 3;
    grid-row: 5;
}

.hpb-grid--partners-diamond .hpb-grid__item {
    aspect-ratio: 1;
}

.hpb-grid--partners-diamond .hpb-grid__item > .hpb-card,
.hpb-grid--partners-diamond .hpb-grid__item > .hamta-product-card,
.hpb-grid--partners-diamond .hpb-grid__item > .hpb-product-loop.product-card,
.hpb-grid--partners-diamond .hpb-grid__item > a {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 15px rgba(129, 41, 144, 0.1);
    overflow: hidden;
}

.hpb-grid--partners-diamond .hpb-grid__item > .hpb-card,
.hpb-grid--partners-diamond .hpb-grid__item > .hamta-product-card,
.hpb-grid--partners-diamond .hpb-grid__item > .hpb-product-loop.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.hpb-grid--partners-diamond .hpb-card__image,
.hpb-grid--partners-diamond .hamta-product-card .product-image,
.hpb-grid--partners-diamond .hpb-product-loop.product-card .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hpb-grid--partners-diamond .hpb-card__image img,
.hpb-grid--partners-diamond .hamta-product-card img,
.hpb-grid--partners-diamond .hpb-product-loop.product-card img {
    object-fit: contain;
    max-height: 105px;
    width: auto;
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hpb-grid--partners-diamond .hpb-grid__inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: auto;
        max-width: min(100%, 560px);
        margin-inline: auto;
    }

    .hpb-grid--partners-diamond .hpb-card__image img,
    .hpb-grid--partners-diamond .hamta-product-card img,
    .hpb-grid--partners-diamond .hpb-product-loop.product-card img {
        max-height: clamp(48px, 10vw, 88px);
    }
}

/* موبایل — چیدمان الماس ۳ ستونه (لوگوها بزرگ‌تر، ارتفاع فشرده) */
@media (max-width: 767px) {
    .hpb-grid--partners-diamond .hpb-grid__inner {
        --hpb-row-min: 0px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: auto;
        gap: max(4px, min(var(--hpb-gap, 8px), 8px));
        max-width: min(100%, 340px);
        width: 100%;
        margin-inline: auto;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(1) {
        grid-column: 2;
        grid-row: 1;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(3) {
        grid-column: 3;
        grid-row: 2;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(6) {
        grid-column: 3;
        grid-row: 3;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(7) {
        grid-column: 2;
        grid-row: 4;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(8) {
        grid-column: 1;
        grid-row: 5;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(9) {
        grid-column: 2;
        grid-row: 5;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(10) {
        grid-column: 3;
        grid-row: 5;
    }

    .hpb-grid--partners-diamond .hpb-grid__item:nth-child(11) {
        grid-column: 2;
        grid-row: 6;
    }

    .hpb-grid--partners-diamond .hpb-grid__item > .hpb-card,
    .hpb-grid--partners-diamond .hpb-grid__item > .hamta-product-card,
    .hpb-grid--partners-diamond .hpb-grid__item > .hpb-product-loop.product-card,
    .hpb-grid--partners-diamond .hpb-grid__item > a {
        border-radius: 18px;
    }

    .hpb-grid--partners-diamond .hpb-grid__item > .hpb-card,
    .hpb-grid--partners-diamond .hpb-grid__item > .hamta-product-card,
    .hpb-grid--partners-diamond .hpb-grid__item > .hpb-product-loop.product-card {
        padding: 8px;
    }

    .hpb-grid--partners-diamond .hpb-card__image img,
    .hpb-grid--partners-diamond .hamta-product-card img,
    .hpb-grid--partners-diamond .hpb-product-loop.product-card img {
        max-height: clamp(40px, 14vw, 72px);
    }
}

/* انیمیشن ورود */
.hpb-grid.hpb-anim-enter--fade .hpb-grid__item {
    transform: none;
    opacity: 0;
}

.hpb-grid.hpb-anim-enter--fade-up .hpb-grid__item {
    /* transform: translateY(24px); */
}

.hpb-grid.hpb-anim-enter--fade-down .hpb-grid__item {
    transform: translateY(-24px);
}

.hpb-grid.hpb-anim-enter--fade-left .hpb-grid__item {
    transform: translateX(24px);
}

.hpb-grid.hpb-anim-enter--fade-right .hpb-grid__item {
    transform: translateX(-24px);
}

.hpb-grid.hpb-anim-enter--zoom-in .hpb-grid__item {
    transform: scale(0.92);
}

.hpb-grid.hpb-anim-enter--zoom-out .hpb-grid__item {
    transform: scale(1.08);
}

.hpb-grid.hpb-anim-enter--slide-up .hpb-grid__item {
    transform: translateY(40px);
}

.hpb-grid.hpb-anim-enter--flip .hpb-grid__item {
    transform: perspective(800px) rotateX(12deg);
}

.hpb-grid.hpb-anim-enter--rotate .hpb-grid__item {
    transform: rotate(-4deg) scale(0.96);
}

.hpb-grid.hpb-anim-enter--none .hpb-grid__item {
    opacity: 1;
    transform: none;
    transition: none;
}

/* هاور — تکمیل carousel */
.hpb-grid.hpb-anim-hover--glow .hpb-card:hover,
.hpb-grid.hpb-anim-hover--glow .hamta-product-card:hover,
.hpb-grid.hpb-anim-hover--glow .hpb-product-loop.product-card:hover {
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.35), 0 16px 40px rgba(13, 110, 253, 0.18);
}

.hpb-grid.hpb-anim-hover--border .hpb-card:hover,
.hpb-grid.hpb-anim-hover--border .hamta-product-card:hover,
.hpb-grid.hpb-anim-hover--border .hpb-product-loop.product-card:hover {
    box-shadow: inset 0 0 0 2px #0d6efd;
}

.hpb-grid.hpb-anim-hover--tilt .hpb-card:hover,
.hpb-grid.hpb-anim-hover--tilt .hamta-product-card:hover,
.hpb-grid.hpb-anim-hover--tilt .hpb-product-loop.product-card:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
}

.hpb-grid .hpb-card,
.hpb-grid .hamta-product-card,
.hpb-grid .hpb-product-loop.product-card {
    height: 100%;
}

.hpb-grid.hpb-listing-thumbs .hamta-product-card .product-image,
.hpb-grid.hpb-listing-thumbs .hpb-product-loop.product-card .product-image {
    width: auto;
    max-width: min(var(--hpb-listing-max-w-d, 300px), 100%);
    margin-inline: auto;
    aspect-ratio: auto;
    height: auto;
}

@media (max-width: 999px) {
    .hpb-grid.hpb-listing-thumbs .hamta-product-card .product-image,
    .hpb-grid.hpb-listing-thumbs .hpb-product-loop.product-card .product-image {
        max-width: min(var(--hpb-listing-max-w-t, var(--hpb-listing-max-w-d, 300px)), 100%);
    }
}

@media (max-width: 767px) {
    .hpb-grid.hpb-listing-thumbs .hamta-product-card .product-image,
    .hpb-grid.hpb-listing-thumbs .hpb-product-loop.product-card .product-image {
        max-width: min(var(--hpb-listing-max-w-m, var(--hpb-listing-max-w-t, 300px)), 100%);
    }
}

.hpb-grid.hpb-listing-thumbs .hamta-listing-product-img,
.hpb-grid.hpb-listing-thumbs .hamta-product-card .product-image img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.hpb-grid .hpb-card__image img,
.hpb-grid .hpb-card__image .hamta-listing-product-picture,
.hpb-grid .hpb-card__image .hamta-listing-product-picture img,
.hpb-grid .hamta-product-card img,
.hpb-grid .hpb-product-loop.product-card img {
    transition: transform 0.4s ease;
}

.hpb-grid.hpb-anim-hover--zoom .hpb-card:hover .hpb-card__image img,
.hpb-grid.hpb-anim-hover--zoom .hamta-product-card:hover img,
.hpb-grid.hpb-anim-hover--zoom .hpb-product-loop.product-card:hover img {
    transform: scale(1.06);
}

/* ── اسلایدر بنتو ── */
.hpb-grid--bento-slider .hpb-grid__swiper {
    width: 100%;
    overflow: hidden;
}

.hpb-grid--bento-slider .hpb-grid__slide {
    height: auto;
}

.hpb-grid--bento-slider .hpb-grid__arrow {
    color: #0d6efd;
}

.hpb-grid--bento-slider .hpb-grid__arrow::after {
    font-size: 22px;
}

.hpb-grid--bento-slider .hpb-grid__pagination {
    position: relative;
    margin-top: 12px;
}

.hpb-grid--bento-slider.hpb-grid--bento-slider-paginated .hpb-grid__inner {
    min-height: calc(var(--hpb-row-min, 180px) * 2 + var(--hpb-gap, 16px));
}

.hpb-grid--bento-slider.hpb-grid--bento-slider-paginated .hpb-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* شاخص ثابت + کاروسل فرعی */
.hpb-grid--bento-slider-fixed_hero .hpb-grid__bento-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--hpb-gap, 16px);
    align-items: stretch;
}

.hpb-grid--bento-slider-fixed_hero .hpb-grid__hero-fixed {
    min-height: calc(var(--hpb-row-min, 180px) * 2 + var(--hpb-gap, 16px));
}

.hpb-grid--bento-slider-fixed_hero .hpb-grid__hero-fixed .hpb-grid__item--hero {
    height: 100%;
    opacity: 1;
    transform: none;
}

.hpb-grid--bento-slider-fixed_hero .hpb-grid__carousel-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hpb-grid--bento-slider-fixed_hero .hpb-grid__swiper--secondary {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.hpb-grid--bento-secondary-grid_2x2 .hpb-grid__secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--hpb-gap, 16px);
    grid-auto-rows: minmax(var(--hpb-row-min, 180px), auto);
    height: 100%;
    min-height: calc(var(--hpb-row-min, 180px) * 2 + var(--hpb-gap, 16px));
}

.hpb-grid--bento-secondary-row_1 .hpb-grid__secondary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--hpb-gap, 16px);
    grid-auto-rows: minmax(var(--hpb-row-min, 180px), auto);
    min-height: calc(var(--hpb-row-min, 180px) * 2 + var(--hpb-gap, 16px));
    align-content: center;
}

@media (max-width: 1024px) {
    .hpb-grid--bento-slider-fixed_hero .hpb-grid__bento-split {
        grid-template-columns: 1fr;
    }

    .hpb-grid--bento-secondary-row_1 .hpb-grid__secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hpb-grid--bento-slider.hpb-grid--bento-slider-paginated .hpb-grid__item:first-child {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .hpb-grid--bento-slider-fixed_hero .hpb-grid__hero-fixed {
        min-height: var(--hpb-row-min, 180px);
    }

    .hpb-grid--bento-secondary-grid_2x2 .hpb-grid__secondary,
    .hpb-grid--bento-secondary-row_1 .hpb-grid__secondary {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hpb-grid--bento-slider .hpb-grid__item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ── Embedded carousel/module inside grid cell ─────────────────── */
.hpb-grid__item--embed-module {
    grid-column: 1 / -1;
}

.hpb-grid__item--embed-module .hpb-carousel {
    width: 100%;
}

/* ── مراحل انجام کار ── */
.hpb-grid--process-steps .hpb-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hpb-grid--process-steps .hpb-process-step__card {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: var(--hpb-row-min, 160px);
    padding: 1.35rem 1rem 1.15rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--hpb-step-accent, #812990);
    border-radius: var(--hpb-step-radius, 20px);
    box-shadow: 0 0 15px rgba(129, 41, 144, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hpb-grid--process-steps.hpb-anim-hover--lift .hpb-process-step__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(129, 41, 144, 0.14);
}

.hpb-grid--process-steps .hpb-process-step__num {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--hpb-step-accent, #812990);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.hpb-grid--process-steps.hpb-grid--process-steps-no-numbers .hpb-process-step__num {
    display: none;
}

.hpb-grid--process-steps .hpb-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.hpb-grid--process-steps .hpb-process-step__title {
    color: var(--hpb-step-accent, #812990);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
    max-width: 16rem;
}

.hpb-grid--process-steps .hpb-process-step__connector {
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    width: var(--hpb-gap, 16px);
    height: 2px;
    transform: translate(50%, -50%);
    background: var(--hpb-step-accent, #812990);
    pointer-events: none;
    z-index: 1;
}

.hpb-grid--process-steps .hpb-process-step__connector::after {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-inline-start-color: var(--hpb-step-accent, #812990);
}

.hpb-grid--process-steps.hpb-grid--process-steps-no-connectors .hpb-process-step__connector {
    display: none !important;
}

.hpb-grid--process-steps .hpb-process-step--row-end .hpb-process-step__connector {
    display: none;
}

@media (max-width: 767px) {
    .hpb-grid--process-steps .hpb-process-step__connector {
        top: auto;
        bottom: 0;
        inset-inline-end: auto;
        inset-inline-start: 50%;
        width: 2px;
        height: calc(var(--hpb-gap, 16px) * 0.75);
        transform: translate(-50%, 50%);
    }

    .hpb-grid--process-steps .hpb-process-step__connector::after {
        inset-inline-start: 50%;
        inset-inline-end: auto;
        top: 100%;
        transform: translate(-50%, 0);
        border: 5px solid transparent;
        border-top-color: var(--hpb-step-accent, #812990);
        border-inline-start-color: transparent;
    }

    .hpb-grid--process-steps .hpb-process-step--row-end .hpb-process-step__connector {
        display: block;
    }
}

/* ── گرید باکس ویدئو آموزشی ── */
.hpb-grid--education-video-box .hpb-grid__inner.hpb-edu-video {
    display: block;
    grid-template-columns: none;
}

.hpb-edu-video__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: var(--hpb-gap, 16px);
    align-items: stretch;
}

.hpb-grid--edu-video-featured-end .hpb-edu-video__featured {
    order: 2;
}

.hpb-grid--edu-video-featured-end .hpb-edu-video__secondary {
    order: 1;
}

.hpb-edu-video__secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--hpb-gap, 16px);
    align-content: stretch;
}

.hpb-edu-video__tile-wrap {
    min-height: 0;
}

.hpb-edu-video__tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 140px;
    border-radius: var(--hpb-edu-radius, 20px);
    background-color: var(--hpb-edu-tile-bg, #e2e8f0);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hpb-edu-video__tile--featured {
    min-height: var(--hpb-edu-featured-min, 320px);
}

.hpb-edu-video__tile--has-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18));
}

.hpb-edu-video__tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.hpb-edu-video__player {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: var(--hpb-edu-featured-min, 320px);
    object-fit: cover;
    border-radius: inherit;
    display: block;
    background: #000;
}

.hpb-edu-video__play {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--hpb-edu-play-color, #475569);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.hpb-edu-video__tile--featured .hpb-edu-video__play {
    width: 72px;
    height: 72px;
    font-size: 24px;
}

.hpb-edu-video__play i {
    margin-inline-start: 3px;
}

.hpb-grid--edu-video-no-play .hpb-edu-video__play {
    display: none;
}

.hpb-edu-video__title {
    position: absolute;
    inset-inline: 12px;
    bottom: 10px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

@media (max-width: 900px) {
    .hpb-edu-video__layout {
        grid-template-columns: 1fr;
    }

    .hpb-grid--edu-video-featured-end .hpb-edu-video__featured,
    .hpb-grid--edu-video-featured-end .hpb-edu-video__secondary,
    .hpb-grid--edu-video-featured-start .hpb-edu-video__featured,
    .hpb-grid--edu-video-featured-start .hpb-edu-video__secondary {
        order: initial;
    }

    .hpb-edu-video__tile--featured,
    .hpb-edu-video__player {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .hpb-edu-video__secondary {
        grid-template-columns: 1fr;
    }
}
