/* Downloads & Video Gallery shared layout */

.page-hero--resources {
    background: linear-gradient(135deg, #0f2744 0%, #1A3668 55%, #1e4976 100%);
}

.resources-page {
    padding-top: 2.5rem;
}

/* ---- Downloads page layout ---- */
.resources-page--downloads {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 28%);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.dl-layout {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.dl-sidebar {
    position: sticky;
    top: calc(var(--header-height, 72px) + 1.25rem);
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.dl-sidebar__title {
    margin: 0 0 1rem;
    padding: 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.dl-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dl-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dl-sidebar__link:hover {
    color: var(--header-navy, #1A3668);
    background: #f8fafc;
}

.dl-sidebar__link.is-active {
    color: #fff;
    background: linear-gradient(135deg, #1A3668 0%, #1e4976 100%);
    box-shadow: 0 6px 18px rgba(26, 54, 104, 0.22);
}

.dl-sidebar__link-arrow {
    flex-shrink: 0;
    opacity: 0.45;
}

.dl-sidebar__link.is-active .dl-sidebar__link-arrow {
    opacity: 0.9;
}

.dl-sidebar__help {
    margin-top: 1.25rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.08) 0%, rgba(26, 54, 104, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(232, 93, 4, 0.15);
}

.dl-sidebar__help p {
    margin: 0 0 0.35rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.dl-sidebar__help a {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--header-navy, #1A3668);
}

.dl-main__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.25rem;
}

.dl-main__intro {
    margin: 0;
    flex: 1;
    min-width: min(100%, 28rem);
    font-size: 0.98rem;
    line-height: 1.7;
    color: #64748b;
}

.dl-main__count {
    margin: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--header-navy, #1A3668);
    background: rgba(26, 54, 104, 0.08);
    border-radius: 999px;
    white-space: nowrap;
}

.dl-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.dl-list {
    display: flex;
    flex-direction: column;
}

.dl-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto auto;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid #eef2f6;
    transition: background 0.2s ease;
}

.dl-row:last-child {
    border-bottom: none;
}

.dl-row:hover,
.dl-row--alt:hover {
    background: #f8fafc;
}

.dl-row--alt {
    background: #fbfcfd;
}

.dl-row__file {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(160deg, #1A3668 0%, #2a4a7c 100%);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.dl-row__file-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
}

.dl-row__title {
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.dl-row__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.dl-row__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    min-width: 88px;
}

.dl-row__type {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--header-navy, #1A3668);
}

.dl-row__size {
    font-size: 0.78rem;
    color: #94a3b8;
}

.dl-row__action {
    flex-shrink: 0;
}

.dl-row__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 132px;
    justify-content: center;
    padding: 0.58rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dl-row__btn--primary {
    color: #fff;
    background: var(--header-navy, #1A3668);
    box-shadow: 0 4px 14px rgba(26, 54, 104, 0.22);
}

.dl-row__btn--primary:hover {
    background: #142a52;
    color: #fff;
    transform: translateY(-1px);
}

/* Legacy card grid — unused */
.dl-grid,
.dl-card {
    display: none;
}

.dl-main__title {
    display: none;
}

.dl-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #0f2744 0%, #1A3668 100%);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 39, 68, 0.2);
}

.dl-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dl-cta__content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: #fff;
}

.dl-cta__content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 52ch;
    line-height: 1.55;
}

.dl-cta__btn {
    background: #e85d04;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.35);
    white-space: nowrap;
}

.dl-cta__btn:hover {
    background: #d45304;
    color: #fff;
}

/* ---- Downloads pages — shared content area ---- */
.resources-page--downloads {
    background: #f8fafc;
    padding-top: 0;
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

/* ---- Brochures page ---- */
.resources-page--brochures {
    background: #f8fafc;
    padding-top: 0;
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.dl-downloads-tabs,
.dl-brochures-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: -1.75rem 0 1.75rem;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 2;
}

.dl-downloads-tabs__link,
.dl-brochures-tabs__link {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    min-width: fit-content;
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    border-radius: 10px;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dl-downloads-tabs__link:hover,
.dl-brochures-tabs__link:hover {
    color: var(--header-navy, #1A3668);
    background: #f8fafc;
}

.dl-downloads-tabs__link.is-active,
.dl-brochures-tabs__link.is-active {
    color: #fff;
    background: linear-gradient(135deg, #1A3668 0%, #1e4976 100%);
    box-shadow: 0 4px 14px rgba(26, 54, 104, 0.25);
}

.page-hero--downloads {
    padding-bottom: 2.75rem;
}

/* Brochures panel list */
.dl-brochures-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.dl-brochures-panel__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid #eef2f6;
}

.dl-brochures-panel__title {
    margin: 0.35rem 0 0;
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: #0f2744;
    letter-spacing: -0.02em;
}

.dl-brochures-panel__intro {
    margin: 0;
    max-width: 28rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #64748b;
    text-align: right;
}

.dl-brochures-list {
    display: flex;
    flex-direction: column;
}

.dl-brochure-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.dl-brochure-row:last-child {
    border-bottom: none;
}

.dl-brochure-row:hover {
    background: #fafbfc;
}

.dl-brochure-row__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(26, 54, 104, 0.08) 0%, rgba(232, 93, 4, 0.08) 100%);
    color: var(--header-navy, #1A3668);
}

.dl-brochure-row__icon span {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #e85d04;
}

.dl-brochure-row__title {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.dl-brochure-row__desc {
    margin: 0 0 0.4rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.dl-brochure-row__size {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
}

.dl-brochure-row__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 130px;
    min-height: 42px;
    padding: 0.55rem 1.1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background: var(--header-navy, #1A3668);
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(26, 54, 104, 0.22);
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.dl-brochure-row__btn:hover {
    color: #fff;
    background: #142a52;
    transform: translateY(-1px);
}

/* Legacy brochure card grid — unused */
.dl-brochures-grid,
.dl-brochure-card {
    display: none;
}

.dl-brochures__intro {
    display: none;
}

/* ---- Certifications page — card grid with preview ---- */
.resources-page--certifications .dl-main__head,
.resources-page--certifications .dl-panel,
.resources-page--certifications .dl-cta {
    display: none;
}

.dl-certs__head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.dl-certs__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f2744;
    letter-spacing: -0.02em;
}

.dl-certs__subtitle {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #64748b;
}

.dl-certs__accent {
    display: block;
    width: 56px;
    height: 4px;
    margin: 0 auto;
    background: #16a34a;
    border-radius: 999px;
}

.dl-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.dl-cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dl-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.dl-cert-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: #e8f2fc;
    color: #1A3668;
}

.dl-cert-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.dl-cert-card__desc {
    margin: 0 0 1.25rem;
    flex: 1;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.dl-cert-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 148px;
    min-height: 40px;
    padding: 0.5rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.dl-cert-card__btn:hover {
    color: var(--header-navy, #1A3668);
    border-color: var(--header-navy, #1A3668);
    background: #f8fafc;
}

.dl-cert-card__btn--link {
    text-decoration: none;
}

.dl-cert-card__download {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--header-navy, #1A3668);
}

.dl-cert-card__download:hover {
    text-decoration: underline;
}

.cert-preview {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cert-preview.is-open {
    opacity: 1;
    visibility: visible;
}

.cert-preview[hidden] {
    display: flex !important;
}

body.cert-preview-open {
    overflow: hidden;
}

.cert-preview__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.cert-preview__dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    max-height: min(90vh, 820px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.cert-preview__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid #e2e8f0;
}

.cert-preview__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.cert-preview__close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #f1f5f9;
    color: #334155;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.cert-preview__frame-wrap {
    flex: 1;
    min-height: 420px;
    background: #f8fafc;
}

.cert-preview__frame {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.cert-preview__actions {
    padding: 0.85rem 1.15rem;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

/* Gallery subnav (photo / video tabs) */
.resources-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.35rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.resources-subnav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.resources-subnav__link:hover {
    color: var(--header-navy, #1A3668);
    background: #fff;
}

.resources-subnav__link.is-active {
    color: #fff;
    background: var(--header-navy, #1A3668);
    box-shadow: 0 4px 12px rgba(26, 54, 104, 0.22);
}

.resources-page__head .section__title {
    margin-bottom: 0.65rem;
}

/* Legacy download list — kept for backwards compatibility */
.download-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-card {
    display: none;
}

/* Video gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.video-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.video-card__trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #0f172a;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card--placeholder .video-card__trigger {
    cursor: default;
}

.video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.video-card__trigger:hover .video-card__thumb {
    transform: scale(1.04);
    opacity: 1;
}

.video-card--placeholder .video-card__trigger:hover .video-card__thumb {
    transform: none;
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__play::before {
    content: '';
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.video-card__play svg {
    position: absolute;
    color: var(--header-navy, #1A3668);
    margin-left: 3px;
}

.video-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 999px;
}

.video-card__duration {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 6px;
}

.video-card__body {
    padding: 1rem 1.1rem 1.15rem;
}

.video-card__title {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #0f172a;
}

.video-card__desc {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.video-card__link {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--header-navy, #1A3668);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.video-lightbox[hidden] {
    display: flex !important;
}

body.video-lightbox-open {
    overflow: hidden;
}

.video-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
}

.video-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.video-lightbox__content {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
}

.video-lightbox__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.video-lightbox__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-lightbox__caption {
    margin: 0.85rem 0 0;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .dl-brochures-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .dl-brochures-panel__intro {
        text-align: left;
        max-width: none;
    }

    .dl-brochures-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dl-certs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dl-row {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        grid-template-areas:
            "file content action"
            "file meta action";
    }

    .dl-row__file {
        grid-area: file;
    }

    .dl-row__content {
        grid-area: content;
    }

    .dl-row__meta {
        grid-area: meta;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.65rem;
    }

    .dl-row__action {
        grid-area: action;
        align-self: center;
    }
}

@media (max-width: 991.98px) {
    .dl-layout {
        grid-template-columns: 1fr;
    }

    .dl-sidebar {
        position: static;
    }

    .dl-sidebar__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .dl-sidebar__link-arrow {
        display: none;
    }

    .dl-sidebar__help {
        display: none;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .dl-downloads-tabs,
    .dl-brochures-tabs {
        margin-top: -1.25rem;
        flex-direction: column;
    }

    .dl-downloads-tabs__link,
    .dl-brochures-tabs__link {
        justify-content: flex-start;
        width: 100%;
    }

    .dl-brochure-row {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "icon content"
            "btn btn";
        gap: 0.85rem 1rem;
        padding: 1.1rem 1.15rem;
    }

    .dl-brochure-row__icon {
        grid-area: icon;
        width: 56px;
        height: 56px;
    }

    .dl-brochure-row__content {
        grid-area: content;
    }

    .dl-brochure-row__btn {
        grid-area: btn;
        width: 100%;
        min-width: 0;
    }

    .dl-certs-grid {
        grid-template-columns: 1fr;
    }

    .dl-brochures-grid {
        grid-template-columns: 1fr;
    }

    .dl-row {
        grid-template-columns: 48px 1fr;
        grid-template-areas:
            "file content"
            "meta action";
        gap: 0.75rem 1rem;
        padding: 1rem;
    }

    .dl-row__file {
        grid-area: file;
        width: 48px;
        height: 48px;
    }

    .dl-row__content {
        grid-area: content;
    }

    .dl-row__meta {
        grid-area: meta;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .dl-row__action {
        grid-area: action;
        justify-self: end;
    }

    .dl-row__btn {
        min-width: 0;
        width: 100%;
    }

    .dl-sidebar__nav {
        grid-template-columns: 1fr;
    }

    .dl-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dl-cta__icon {
        margin: 0 auto;
    }

    .dl-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .resources-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .resources-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}
