/*---*\
    Resource Section Block

    Default (homepage): pill-style tab switcher + Slick slider of blog
    cards. Slider: 1 mobile / 1 + peek tablet (centerMode) / 4 desktop.

    Modifier .resource-section--image-buttons (Figma 10284:10319):
    underline tabs, Slick tab row only, per-tab panel intro (H3 + optional
    category description), horizontal image-button cards in a flex row
    with wrap (1 / 2 / 3 per breakpoint; justify-content centers short
    last rows; no Slick on cards).

    Section spacing/background: global utilities on <section> (section-padding,
    bg-*). Wraps in .container-fluid so the card row can extend wider than
    the heading / tabs above on extra-large screens.

    IMPLEMENTATION NOTES:
    - BAM: fx_slick, fx_choices_plugin, fx_choices_custom (CSS); jquery,
      fx_slick, fx_choices (JS). Block script: resource-section.js.
    - Slick equal-height / gap: components/slick.css (.fx-slider).
    - Related layout: components/image-buttons.css.
    - 768-1024px band: image-button cards stack vertical; blog variant drops
      .container-fluid side padding for edge-to-edge slider peeks.
\*---*/

.resource-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.resource-section__heading-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-paragraph);
    align-items: center;
    width: 100%;
}

.resource-section__heading {
    margin: 0;
    text-transform: uppercase;
}

.resource-section__description {
    margin: 0;
    color: var(--color-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

.resource-section__description p {
    margin: 0;
}

/* Mobile category picker (Choices.js) replaces tab pills below 768px.
   Visibility is handled by trumps helpers in markup:
   - .hidden-sm-up on select wrapper
   - .hidden-xs-down on tab row */
.resource-section__mobile-select {
    margin-top: 25px;
    width: 100%;
    max-width: 100%;
}

.resource-section__select {
    width: 100%;
}

.resource-section__mobile-select .choices {
    width: 100%;
    margin-bottom: 0;
}

/* Choices applies inline height/padding; !important overrides plugin CSS. */
.resource-section__mobile-select .choices__inner {
    border-radius: var(--border-radius-pill);
    border-color: var(--color-accent-green-soft);
    background-color: var(--color-accent-green-soft);
    text-align: left;
    font-weight: 700;
    height: 46px !important;
    padding: 8px 8px 8px 20px !important;
    text-transform: uppercase;
}

.resource-section__mobile-select .choices.is-open .choices__inner {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.resource-section__mobile-select .choices.is-open .choices__list--dropdown {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.resource-section__mobile-select .choices__list--single .choices__item {
    font-size: var(--font-size-h5);
}

.resource-section__mobile-select .choices[data-type*='select-multiple']:after,
.resource-section__mobile-select .choices[data-type*='select-one']:after {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 8px;
    width: 30px;
    height: 30px;
    margin: 0;
}

.resource-section__tabs {
    display: flex;
    align-items: center;
    background-color: var(--color-accent-green-soft);
    border-radius: var(--border-radius-pill);
    padding: 6px;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.resource-section__tabs::-webkit-scrollbar {
    display: none;
}

.resource-section__tab {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    padding: 8px 22px;
    border-radius: var(--border-radius-pill);
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-h5);
    line-height: var(--line-height-heading);
    text-transform: uppercase;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.resource-section__tab:hover {
    color: var(--color-primary);
}

.resource-section__tab[aria-selected="true"] {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.resource-section__panel {
    margin-top: 40px;
}

.resource-section__slider {
    margin: 0;
}

/* Half-gap padding + matching negative margin = full visual gap with
   first/last slides flush. overflow: hidden clips infinite clones. */
.js-resource-section-slider .slick-list {
    margin: 0 calc(var(--content-gap) / -2);
    overflow: hidden;
}

/* Equal-height chain (webfx slick pattern): propagate height down
   through track > slide > Slick's injected wrapper > .fx-slide so
   the card body's flex-grow has something to resolve against.
   !important overrides Slick's inline styles. FOUC pre-init handled
   globally via .fx-slider .fx-slide in components/slick.css. */
.js-resource-section-slider .slick-slide {
    padding: 0 calc(var(--content-gap) / 2);
    vertical-align: top;
    height: inherit !important;
}

.js-resource-section-slider .slick-track {
    display: flex !important;
}

.js-resource-section-slider .slick-slide > div {
    height: 100% !important;
    display: flex;
}

.js-resource-section-slider.fx-slider .fx-slide {
    height: 100%;
}

.resource-card__item {
    display: flex;
    flex-direction: column;
}

.resource-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-card);
    font-weight: 400;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.resource-card__image-wrap {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    overflow: clip;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
    flex-shrink: 0;
    contain: paint;
}

.resource-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

/* Negative margin-top pulls the body up so the category pill (with
   its 5px white border) straddles the image / body boundary. */
.resource-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 24px;
    margin-top: -16px;
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
}

.resource-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
}

.resource-card__category {
    align-self: flex-start;
    background-color: var(--color-accent-green-soft);
    color: var(--color-primary-hover);
    border: 5px solid var(--bg-white);
    border-radius: 20px;
    padding: 5px 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: var(--line-height-heading);
}

.resource-card__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-h5);
    line-height: var(--line-height-heading);
    color: var(--color-heading);
    text-transform: uppercase;
}

.resource-card__excerpt {
    margin: 0;
    color: var(--color-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* margin-top: auto pins CTA to card bottom across varying excerpt lengths. */
.resource-card__link {
    margin-top: auto;
    display: flex;
}

/* The .btn-tertiary span is decorative (parent <a> owns the click). */
.resource-card:hover .btn-tertiary,
.resource-card:focus-visible .btn-tertiary {
    color: var(--color-tertiary-hover);
}

.resource-card:hover .btn-tertiary::after,
.resource-card:focus-visible .btn-tertiary::after {
    transform: translateX(2px);
}

.bg-white.resource-section .resource-card {
    background-color: var(--bg-light-green);
}

.resource-section__slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.resource-section__decorative-line {
    flex: 1 1 auto;
    height: 2px;
    background-color: var(--color-accent-green-soft);
    max-width: 761px;
    min-width: 0;
}

/* Real <button>s (not Slick-managed); slickPrev / slickNext in resource-section.js. */
.resource-section__arrow {
    appearance: none;
    -webkit-appearance: none;
    font-family: 'be-icon', var(--font-icon) !important;
    font-size: 0;
    line-height: 0;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.resource-section__arrow.slick-prev::before,
.resource-section__arrow.slick-next::before {
    opacity: 1;
    color: currentColor;
}

.resource-section__arrow:hover {
    background-color: var(--color-primary-hover);
}

.resource-section__arrow.slick-disabled {
    opacity: 0.4;
    cursor: default;
}

.resource-section__dots {
    display: none;
}

.resource-section__dots .slick-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-section__dots .slick-dots li {
    display: inline-flex;
    align-items: center;
}

.resource-section__dots .slick-dots li + li {
    margin-top: 0;
}

.resource-section__dots .slick-dots li button {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    background-color: var(--color-accent-green-soft);
    text-indent: -9999px;
    overflow: hidden;
    transition: background-color var(--transition-fast), width var(--transition-fast);
}

.resource-section__dots .slick-dots li.slick-active button {
    background-color: var(--color-primary);
    width: 32px;
}

/* Tablet (>=768px) - centerMode peeks */
@media (min-width: 768px) {
    .js-resource-section-slider .slick-list {
        margin: 0 -14px;
    }

    .js-resource-section-slider .slick-slide {
        padding: 0 14px;
    }

    .resource-card__image-wrap {
        height: 220px;
    }

    .resource-card__body {
        padding: 0 25px 28px;
    }

    .resource-section__arrow {
        width: 45px;
        height: 45px;
    }

    .resource-section__dots {
        display: block;
    }

    .resource-section__tab {
        padding: 6px 32px;
    }
}

/* Desktop (>=1200px) - 4 cards per slide */
@media (min-width: 1200px) {
    .js-resource-section-slider .slick-list {
        margin: 0 calc(var(--content-gap) / -2);
    }

    .js-resource-section-slider .slick-slide {
        padding: 0 calc(var(--content-gap) / 2);
    }

    .resource-section__arrow.slick-prev::before,
    .resource-section__arrow.slick-next::before {
        font-size: 20px;
    }

    .resource-card__image-wrap {
        height: 239px;
    }

    .resource-card__body {
        padding: 0 30px 30px;
    }

    .resource-section__tabs {
        padding: 10px;
    }

    .resource-section .resource-card__title {
        font-size: var(--font-size-h5);
    }

    .resource-section__tab {
        padding: 6px 50px;
        font-size: var(--font-size-h5);
    }

    .resource-section--image-buttons .resource-section__tab {
        font-size: var(--font-size-h6);
    }

    .resource-section__header {
        gap: 35px;
    }

    .resource-section__panel {
        margin-top: 50px;
    }

    .resource-section__slider-controls {
        margin-top: 40px;
    }

    .resource-card:hover .resource-card__image {
        transform: scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .resource-section__slider .slick-track,
    .resource-card,
    .resource-section__tab,
    .resource-section__arrow,
    .resource-section__dots .slick-dots li button,
    .js-resource-section-tabs-slider .slick-track,
    .resource-section--image-buttons .resource-section__tab-label-underline::before,
    .resource-section--image-buttons .resource-section__tab-label-underline::after,
    .resource-section__tabs-arrow {
        transition-duration: 0.01ms !important;
    }
}

/* -------------------------------------------------------------------------
   Image Buttons variant (.resource-section--image-buttons)
   ------------------------------------------------------------------------- */

.resource-section--image-buttons .resource-section__header {
    margin-bottom: 0;
}

.resource-section--image-buttons .resource-section__heading-group {
    gap: var(--space-paragraph);
    max-width: 100%;
}

.resource-section--image-buttons .resource-section__description {
    text-align: center;
}

.resource-section--image-buttons .resource-section__category-description {
    margin: 0 auto;
}

.resource-section--image-buttons .resource-section__panel-intro {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
    margin-bottom: var(--content-gap);
    text-align: center;
}

.resource-section--image-buttons .resource-section__panel-heading {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-h3);
    line-height: var(--line-height-heading);
    color: var(--color-heading);
    text-transform: uppercase;
}

.resource-section--image-buttons .resource-section__tabs-wrap {
    /* Block-only spacing; not tied to WYSIWYG blockquote token. */
    margin-top: 20px;
}

.resource-section__tabs-shell {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--content-gap);
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Arrows render only when Slick is active (.has-tabs-slider added by JS). */
.resource-section__tabs-arrow {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: var(--border);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'be-icon', var(--font-icon) !important;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
    z-index: 4;
}

.resource-section--has-tabs-slider .resource-section__tabs-arrow {
    display: inline-flex;
}

.resource-section__tabs-arrow.slick-prev::before,
.resource-section__tabs-arrow.slick-next::before {
    opacity: 1;
    color: currentColor;
    font-size: 10px;
    line-height: 1;
}

.resource-section--image-buttons .resource-section__tabs-viewport {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
}

/* Non-slider: intrinsic label widths, centered (<=3 tablet, <=4 desktop). */
.resource-section--image-buttons .resource-section__tabs-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.resource-section--image-buttons:not(.resource-section--has-tabs-slider) .resource-section__tabs-track {
    gap: 75px;
}

.resource-section--image-buttons .resource-section__tabs-slide {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

/* Track baseline (slider mode): fills gaps between slides at underline y. */
.resource-section--has-tabs-slider.resource-section--image-buttons .resource-section__tabs-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--color-accent-green);
    z-index: 0;
    pointer-events: none;
}

.resource-section--has-tabs-slider .resource-section__tabs-track.slick-initialized {
    display: block;
}

.resource-section--has-tabs-slider .js-resource-section-tabs-slider .slick-track {
    display: flex !important;
}

.resource-section--has-tabs-slider .resource-section__tabs-track .slick-list {
    width: 100%;
}

.resource-section--has-tabs-slider .resource-section__tabs-track .slick-slide {
    height: auto;
    vertical-align: top;
    padding: 0;
}

.resource-section--has-tabs-slider .resource-section__tabs-track .slick-slide > div {
    height: 100%;
}

.resource-section--has-tabs-slider .resource-section__tabs-track .resource-section__tabs-slide {
    flex: 0 0 auto;
    min-width: 0;
    display: flex !important;
    height: 100%;
}

.resource-section--has-tabs-slider.resource-section--image-buttons .resource-section__tabs-track .slick-slide {
    margin: 0 75px 0 0;
}

.resource-section--has-tabs-slider.resource-section--image-buttons .resource-section__tabs-slide .resource-section__tab {
    white-space: nowrap;
}

/* Edge fade in slider mode; mask works on any section background. */
.resource-section--has-tabs-slider .resource-section__tabs-viewport {
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0,
        #000 2.5rem,
        #000 calc(100% - 2.5rem),
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0,
        #000 2.5rem,
        #000 calc(100% - 2.5rem),
        rgba(0, 0, 0, 0) 100%
    );
}

/* Overrides pill-style .resource-section__tab base (blog-cards variant).
   Active state is the underline only (see .resource-section__tab-label-underline). */
.resource-section--image-buttons .resource-section__tab {
    flex: 0 0 auto;
    margin: 0;
    width: auto;
    padding: 0 0 15px;
    text-align: center;
    font-size: var(--font-size-h4);
    color: var(--color-body);
    border-radius: 0;
    white-space: nowrap;
    transition: none;
    position: relative;
    z-index: 1;
}

.resource-section--image-buttons .resource-section__tab.is-active,
.resource-section--image-buttons .resource-section__tab[aria-selected="true"] {
    background-color: transparent;
    color: var(--color-body);
}

/* Per-tab underline (mirrors .tab-accordion__tab-label-underline in tabs-section). */
.resource-section--image-buttons .resource-section__tab-label-underline {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--rule-accent-thickness);
    pointer-events: none;
}

.resource-section--image-buttons .resource-section__tab-label-underline::before,
.resource-section--image-buttons .resource-section__tab-label-underline::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-accent-green);
    transition: background var(--transition-medium);
}

.resource-section--image-buttons .resource-section__tab-label-underline::after {
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
    height: var(--rule-accent-thickness);
    background-color: var(--color-primary);
    transition: transform var(--transition-medium);
}

.resource-section--image-buttons .resource-section__tab.is-active .resource-section__tab-label-underline::after,
.resource-section--image-buttons .resource-section__tab[aria-selected="true"] .resource-section__tab-label-underline::after {
    transform-origin: left;
    transform: translateY(-50%) scaleX(1);
}

.resource-section--image-buttons .resource-section__panel {
    margin-top: var(--soft-medium);
}

/*
 * Flex (not grid): repeat(3, 1fr) tracks always fill the row, so
 * justify-content cannot center a lone last-row item. Flex + wrap +
 * justify-content: center centers incomplete rows via max-width on items.
 */
.resource-section--image-buttons .resource-section__card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--content-gap);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.resource-section--image-buttons .resource-section__card-grid > .resource-card__item {
    flex: 0 1 100%;
    max-width: 100%;
    min-width: 0;
}

/* Image-button card: horizontal media + text row with shadow (not blog slider card). */
.resource-card--image-button {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    min-height: var(--card-min-height-image-button);
    padding: 0;
    overflow: hidden;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-sm);
    gap: 20px;
}

.resource-card--image-button:hover {
    box-shadow: var(--shadow-md);
}

.resource-card--image-button .resource-card__image-wrap--button {
    flex: 1 1 42%;
    min-width: 0;
    min-height: var(--card-min-height-image-button);
    height: auto;
    max-height: none;
    border-radius: var(--border-radius-card) 0 0 var(--border-radius-card);
    align-self: stretch;
}

.resource-card--image-button .resource-card__content--button {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--btn-icon-gap);
    padding: 20px 20px 20px 0;
}

.resource-card--image-button .resource-card__button-link {
    display: flex;
    justify-content: flex-start;
}

.resource-card--image-button .resource-card__button-link .btn {
    align-items: flex-start;
    justify-content: flex-start;
}

.resource-card--image-button .resource-card__button-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-h5);
    line-height: var(--line-height-heading);
    color: var(--color-heading);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .resource-section--image-buttons .resource-section__tabs-wrap {
        margin-top: 30px;
    }

    .resource-section__tabs-arrow {
        width: 30px;
        height: 30px;
    }

    .resource-section__tabs-arrow.slick-prev::before,
    .resource-section__tabs-arrow.slick-next::before {
        font-size: 15px;
    }

    .resource-section--image-buttons .resource-card--image-button .resource-card__content--button {
        padding: 30px 30px 30px 0;
    }

    .resource-section--image-buttons .resource-card--image-button .resource-card__content--button.no-image {
        padding: 30px;
    }

    .resource-section--image-buttons .resource-section__card-grid > .resource-card__item {
        flex: 0 1 calc((100% - var(--content-gap)) / 2);
        max-width: calc((100% - var(--content-gap)) / 2);
    }

    .resource-section--image-buttons .resource-section__panel-heading {
        font-size: var(--font-size-h2);
    }

    .resource-section--image-buttons .resource-section__tab {
        font-size: 24px;
    }

    .resource-section__slider-controls {
        padding-right: var(--bs-gutter-x, 40px);
        padding-left: var(--bs-gutter-x, 40px);
    }
}

/* Tablet band (768-1024): Figma mid-width between theme 768px and 1200px. */
@media ( min-width: 768px ) and ( max-width: 1024px ) {
    .resource-section:not(.resource-section--image-buttons) > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }


    .resource-card--image-button {
        gap: 0;
        flex-direction: column;
    }

    .resource-card--image-button .resource-card__image-wrap--button {
        flex: 1 1 auto;
        border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
    }

    .resource-section--image-buttons .resource-card--image-button .resource-card__content--button {
        flex: 1 1 auto;
        padding: 20px;
    }

}

@media ( min-width: 1025px ) {
    .resource-section__slider-controls {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .resource-section__tabs {
        max-width: 100%;
        width: auto;
    }

    .resource-section--image-buttons .resource-section__card-grid > .resource-card__item {
        flex: 0 1 calc((100% - 2 * var(--content-gap)) / 3);
        max-width: calc((100% - 2 * var(--content-gap)) / 3);
    }

    .resource-section--image-buttons .resource-section__panel {
        margin-top: var(--push-small);
    }

    .resource-section__decorative-line {
        max-width: unset;
    }

    .resource-section__tabs-arrow {
        width: 40px;
        height: 40px;
    }

    .resource-section__tabs-arrow.slick-prev::before,
    .resource-section__tabs-arrow.slick-next::before {
        font-size: 20px;
    }

    .resource-section__tabs-arrow:hover {
        background-color: var(--color-primary-hover);
        color: var(--color-white);
    }

    .resource-section--image-buttons .resource-section__tabs-slide .resource-section__tab {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 1440px) {
    .resource-section--image-buttons .resource-section__tab {
        font-size: var(--font-size-h6);
    }
}
