/* ==========================================================
   VANGUARDMAX - Complete Styles
   ==========================================================
   This CSS matches the HTML structure you copied from
   investor.vanguard.com and uses their exact colors.
   ========================================================== */

/* ==========================================================
   RESET & BASE
   ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vanguard's Actual Colors from the HTML you sent */
    --vanguard-dark: #040505;
    --vanguard-dark-gray: #1a1a1a;
    --vanguard-link-blue: #0072ce;
    --vanguard-white: #ffffff;
    --vanguard-light-bg: #f5f6f6;
    --vanguard-light-blue-bg: #f8faff;
    --vanguard-text-dark: #1a1a1a;
    --vanguard-text-mid: #444444;
    --vanguard-text-light: #666666;
    --vanguard-border-light: #e0e0e0;
    --vanguard-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --vanguard-shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
    --vanguard-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--vanguard-font);
    color: var(--vanguard-text-dark);
    background: var(--vanguard-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================
   CONTAINERS
   ========================================================== */
.container,
.cmp-container {
    width: 100%;
}

.container--fixed,
.cmp-container--fixed {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================
   BUTTONS - Vanguard's Dark Style
   ========================================================== */
.cmp-button,
.btn-primary,
.c11n-button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--vanguard-dark);
    color: var(--vanguard-white);
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    text-align: center;
    font-family: var(--vanguard-font);
}

.cmp-button:hover,
.btn-primary:hover,
.c11n-button--primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Secondary Buttons - Transparent with Blue Text */
.cmp-button--secondary,
.btn-secondary,
.c11n-button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--vanguard-link-blue);
    border: 1.5px solid var(--vanguard-link-blue);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    text-align: center;
    font-family: var(--vanguard-font);
}

.cmp-button--secondary:hover,
.btn-secondary:hover,
.c11n-button--secondary:hover {
    background: rgba(0, 114, 206, 0.05);
    transform: translateY(-2px);
}

/* Large Buttons */
.cmp-button--large,
.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* Full Width Buttons */
.cmp-button--full-width,
.btn-block {
    width: 100%;
    justify-content: center;
}

/* Dark Theme Buttons (on dark backgrounds) */
.cmp-button--primary__dark {
    background: var(--vanguard-white);
    color: var(--vanguard-dark);
}

.cmp-button--primary__dark:hover {
    background: #f0f0f0;
}

/* Red Primary Buttons (used on some Vanguard sections) */
.cmp-button--primary__red {
    background: var(--vanguard-dark);
    color: var(--vanguard-white);
}

.cmp-button--primary__red:hover {
    background: #2a2a2a;
}

/* Link Buttons (text only) */
.cmp-link,
.btn-text {
    color: var(--vanguard-link-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    background: none;
    border: none;
    font-family: var(--vanguard-font);
    font-size: 16px;
}

.cmp-link:hover,
.btn-text:hover {
    color: #005a9e;
    text-decoration: underline;
}

/* ==========================================================
   HEADER - Matching Vanguard's Dark Header
   ========================================================== */
.site-header {
    background: var(--vanguard-white);
    border-bottom: 1px solid var(--vanguard-border-light);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--vanguard-dark-gray);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--vanguard-text-light);
    font-weight: 400;
    display: block;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--vanguard-text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease-in-out;
}

.nav-item .nav-link:hover {
    color: var(--vanguard-link-blue);
    border-bottom-color: var(--vanguard-link-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--vanguard-white);
    min-width: 220px;
    box-shadow: var(--vanguard-shadow-hover);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    border: 1px solid var(--vanguard-border-light);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--vanguard-text-dark);
    transition: all 0.25s ease-in-out;
}

.dropdown-menu li a:hover {
    background: var(--vanguard-light-bg);
    color: var(--vanguard-link-blue);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--vanguard-text-dark);
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.25s ease-in-out;
}

.action-btn:hover {
    color: var(--vanguard-link-blue);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vanguard-text-dark);
    transition: all 0.3s ease;
}

/* ==========================================================
   HERO SPOT - Vanguard's Hero Style
   ========================================================== */
.cmp-hero-spot {
    position: relative;
    overflow: hidden;
}

.cmp-hero-spot__content-container {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.cmp-hero-spot__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cmp-hero-spot__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cmp-hero-spot__content {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    max-width: 600px;
}

.cmp-hero-spot__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cmp-hero-spot__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--vanguard-dark-gray);
}

/* White text on dark/red backgrounds */
.cmp-hero-spot--white-text .cmp-hero-spot__title,
.cmp-hero-spot--white-text .cmp-hero-spot__description {
    color: var(--vanguard-white);
}

.cmp-hero-spot--white-text .cmp-hero-spot__description p {
    color: rgba(255, 255, 255, 0.85);
}

.cmp-hero-spot--black-text .cmp-hero-spot__title {
    color: var(--vanguard-dark-gray);
}

.cmp-hero-spot--black-text .cmp-hero-spot__description p {
    color: var(--vanguard-text-mid);
}

.cmp-hero-spot__description {
    font-size: 18px;
    line-height: 1.7;
}

.cmp-hero-spot__description p {
    margin: 0;
}

.cmp-hero-spot__action-container {
    margin-top: 8px;
}

.cmp-hero-spot__action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Red background (used on some Vanguard hero spots) */
.cmp-hero-spot--background-red {
    background-color: #c20029;
}

/* Full image hero */
.cmp-hero-spot--full-image .cmp-hero-spot__image {
    position: relative;
}

.cmp-hero-spot--full-image .cmp-hero-spot__image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

/* ==========================================================
   CAROUSEL - Vanguard's Carousel Style
   ========================================================== */
.cmp-carousel {
    position: relative;
}

.cmp-carousel__content {
    position: relative;
    overflow: hidden;
}

.cmp-carousel__item {
    display: none;
    position: relative;
    width: 100%;
}

.cmp-carousel__item--active {
    display: block;
}

/* Carousel Controls */
.cmp-carousel__actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.cmp-carousel__action {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    color: var(--vanguard-dark);
}

.cmp-carousel__action:hover {
    background: var(--vanguard-white);
    box-shadow: var(--vanguard-shadow);
}

.cmp-carousel__indicators {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmp-carousel__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.cmp-carousel__indicator--active {
    background: var(--vanguard-white);
    width: 24px;
    border-radius: 5px;
}

.cmp-carousel__action-text {
    display: none;
}

.cmp-carousel__action-icon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   CARDS - Vanguard's Card Style
   ========================================================== */
.c11n-card {
    background: var(--vanguard-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--vanguard-border-light);
    transition: all 0.25s ease-in-out;
}

.c11n-card:hover {
    box-shadow: var(--vanguard-shadow-hover);
    transform: translateY(-4px);
}

.c11n-card__image-container {
    overflow: hidden;
}

.c11n-card__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.c11n-card--image-16-9 .c11n-card__image img {
    aspect-ratio: 16/9;
}

.c11n-card__content {
    padding: 24px;
}

.c11n-card__heading {
    margin-bottom: 8px;
}

.c11n-card__heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--vanguard-dark-gray);
}

.c11n-card__body {
    color: var(--vanguard-text-mid);
    font-size: 15px;
    line-height: 1.6;
}

.c11n-card__body p {
    margin: 0;
}

/* Card horizontal layout */
.cmp-card--image-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cmp-card--image-left .c11n-card__image-container {
    height: 100%;
}

.cmp-card--image-left .c11n-card__image img {
    height: 100%;
    object-fit: cover;
}

/* ==========================================================
   LISTS - Vanguard's List Style
   ========================================================== */
.cmp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmp-list__item {
    border-bottom: 1px solid var(--vanguard-border-light);
}

.cmp-list__item:last-child {
    border-bottom: none;
}

.cmp-list__item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    color: var(--vanguard-text-dark);
    transition: all 0.25s ease-in-out;
}

.cmp-list__item-link:hover {
    color: var(--vanguard-link-blue);
}

.cmp-list__item-title {
    font-size: 16px;
    font-weight: 500;
}

/* ==========================================================
   RICHTEXT - Vanguard's Text Style
   ========================================================== */
.cmp-richtext {
    line-height: 1.7;
}

.cmp-richtext h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cmp-richtext h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cmp-richtext h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.cmp-richtext p {
    font-size: 18px;
    color: var(--vanguard-text-mid);
    margin-bottom: 16px;
}

.cmp-richtext a {
    color: var(--vanguard-link-blue);
    text-decoration: underline;
}

.cmp-richtext a:hover {
    color: #005a9e;
}

/* Text helpers */
.cmp-richtext--fz-h1 { font-size: 44px; font-weight: 700; }
.cmp-richtext--fz-h2 { font-size: 36px; font-weight: 700; }
.cmp-richtext--fz-h3 { font-size: 28px; font-weight: 600; }
.cmp-richtext--fz-h4 { font-size: 22px; font-weight: 600; }
.cmp-richtext--fz-d2 { font-size: 48px; font-weight: 700; }

.cmp-richtext--ff-mark { font-weight: 700; }
.cmp-richtext--fw-heavy { font-weight: 700; }

/* Text colors */
.cmp-richtext--primary-link a {
    color: var(--vanguard-link-blue);
}

.cmp-richtext--reinforced-primary-link-on-dark a {
    color: var(--vanguard-white);
    opacity: 0.8;
}

.cmp-richtext--reinforced-primary-link-on-dark a:hover {
    opacity: 1;
}

/* ==========================================================
   ALERTS - Vanguard's Alert Style
   ========================================================== */
.cmp-alert {
    background: var(--vanguard-light-bg);
    border-left: 4px solid var(--vanguard-link-blue);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cmp-alert__content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cmp-alert__illustrative-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-alert__title {
    font-weight: 600;
    color: var(--vanguard-dark-gray);
}

.cmp-alert__description {
    color: var(--vanguard-text-mid);
    font-size: 14px;
}

.cmp-alert__action-group {
    margin-left: auto;
}

.cmp-alert__action {
    color: var(--vanguard-link-blue);
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

.cmp-alert__action:hover {
    color: #005a9e;
    text-decoration: underline;
}

.cmp-alert__close-icon {
    display: flex;
    align-items: center;
}

/* ==========================================================
   MODAL - Vanguard's Modal Style
   ========================================================== */
.cmp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.cmp-modal--open {
    display: flex;
}

.cmp-modal--container {
    background: var(--vanguard-white);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
}

.cmp-modal--header {
    display: flex;
    justify-content: flex-end;
}

.cmp-modal--close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.cmp-modal--body {
    padding-top: 16px;
}

/* ==========================================================
   FOOTER - Vanguard's Dark Footer
   ========================================================== */
.site-footer {
    background: var(--vanguard-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--vanguard-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.25s ease-in-out;
}

.footer-col ul li a:hover {
    color: var(--vanguard-white);
}

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.footer-social a:hover {
    color: var(--vanguard-white);
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */

/* Tablets and smaller */
@media (max-width: 1024px) {
    .cmp-hero-spot__content {
        padding: 40px 30px;
        max-width: 100%;
    }

    .cmp-hero-spot__title {
        font-size: 30px;
    }

    .cmp-hero-spot--full-image .cmp-hero-spot__image img {
        max-height: 450px;
    }

    .cmp-richtext h1 {
        font-size: 36px;
    }

    .cmp-richtext h2 {
        font-size: 30px;
    }

    .cmp-richtext--fz-h1 { font-size: 36px; }
    .cmp-richtext--fz-h2 { font-size: 30px; }
    .cmp-richtext--fz-d2 { font-size: 38px; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-open {
        display: block;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--vanguard-white);
        padding: 20px;
        box-shadow: var(--vanguard-shadow);
        border-top: 1px solid var(--vanguard-border-light);
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        border: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Header actions on mobile */
    .header-actions .action-btn {
        display: none;
    }

    .header-actions .btn-secondary,
    .header-actions .btn-primary {
        display: none;
    }

    /* Hero */
    .cmp-hero-spot__content-container {
        flex-direction: column;
        min-height: auto;
    }

    .cmp-hero-spot__image {
        position: relative;
        height: 250px;
    }

    .cmp-hero-spot__content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .cmp-hero-spot__title {
        font-size: 26px;
    }

    .cmp-hero-spot__description {
        font-size: 16px;
    }

    .cmp-hero-spot--full-image .cmp-hero-spot__image img {
        max-height: 300px;
    }

    /* Cards */
    .cmp-card--image-left {
        grid-template-columns: 1fr;
    }

    .cmp-card--image-left .c11n-card__image img {
        aspect-ratio: 16/9;
        height: auto;
    }

    .c11n-card__content {
        padding: 20px;
    }

    /* Carousel controls */
    .cmp-carousel__actions {
        bottom: 10px;
        gap: 8px;
    }

    .cmp-carousel__action {
        width: 32px;
        height: 32px;
    }

    .cmp-carousel__indicators {
        gap: 6px;
    }

    .cmp-carousel__indicator {
        width: 8px;
        height: 8px;
    }

    /* Typography */
    .cmp-richtext h1 {
        font-size: 30px;
    }

    .cmp-richtext h2 {
        font-size: 26px;
    }

    .cmp-richtext h3 {
        font-size: 22px;
    }

    .cmp-richtext p {
        font-size: 16px;
    }

    .cmp-richtext--fz-h1 { font-size: 30px; }
    .cmp-richtext--fz-h2 { font-size: 26px; }
    .cmp-richtext--fz-h3 { font-size: 22px; }
    .cmp-richtext--fz-d2 { font-size: 32px; }

    /* Alert */
    .cmp-alert {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .cmp-alert__content {
        flex-wrap: wrap;
    }

    .cmp-alert__action-group {
        margin-left: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .cmp-hero-spot__title {
        font-size: 22px;
    }

    .cmp-hero-spot__content {
        padding: 20px 16px;
    }

    .cmp-richtext h1 {
        font-size: 26px;
    }

    .cmp-richtext h2 {
        font-size: 22px;
    }

    .cmp-richtext--fz-h1 { font-size: 26px; }
    .cmp-richtext--fz-h2 { font-size: 22px; }
    .cmp-richtext--fz-d2 { font-size: 28px; }

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

    .cmp-button,
    .btn-primary,
    .cmp-button--secondary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .cmp-button--large,
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* ==========================================================
   UTILITY CLASSES
   ========================================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ==========================================================
   ANIMATIONS
   ========================================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================
   SCREEN READER ONLY
   ========================================================== */
.c11n-sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================
   END OF STYLES
   ========================================================== */