/* Updated font faces - Variable Fonts */
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 200 800;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 300 700;
    font-display: swap;
}

/* Fallback for browsers that don't support variable fonts */
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

/* TMC color scheme and variables */
:root {
    --tmc-dark-blue: #0A2234;
    --tmc-light-blue: #5087AB;
    --tmc-orange: #EA8000;
    --tmc-charcoal: #4D4D4D;
    --tmc-slate-grey: #666666;
    --tmc-silver: #C0C0C0;
    --tmc-light-grey: #FBFBFB;
    --tmc-white: #FFFFFF;
    --tmc-hero-background: rgba(10, 34, 52, 0.6);
    --tmc-dark-blue-transparent: #0A2234D1;

    --brand-primary: #1D2252;
    --brand-alt: #3E1E70;
    --brand-bright: #F58220;

    --brand-primary-light: #d9ddff;
    --brand-alt-light: #d4c2f2;
    --brand-bright-light: #f2d8c2;

    --brand-primary-bg: #f7f8ff;
    --brand-alt-bg: #faf7ff;
    --brand-bright-bg: #fffbf7;

    --tmc-gradient-primary-angle: 61deg;
    --tmc-gradient-primary-stops: #1D2252 10%, #3E1E70 35%, #F58220 90%;

    --tmc-border-radius: 12px;
    --tmc-border-radius-small: 6px;
    --tmc-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --tmc-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.25);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography variables */
    --font-display: 'Space Grotesk', 'Arial Black', sans-serif;
    --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
}

/* Base styles with new typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: linear-gradient(var(--tmc-gradient-primary-angle), var(--tmc-gradient-primary-stops));
    background-attachment: fixed;
    color: var(--tmc-white);
    line-height: 1.5;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* Language switcher with Space Grotesk */
.language-switcher {
    text-align: center;
    margin-bottom: 30px;
}

.lang-btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--tmc-white);
    padding: 10px 18px;
    cursor: pointer;
    border-radius: var(--tmc-border-radius-small);
    margin: 0 5px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.lang-btn.active {
    background: var(--tmc-white);
    color: var(--brand-primary);
    box-shadow: var(--tmc-shadow);
    font-weight: 700;
}

/* Header with updated typography */
header {
    text-align: center;
    margin-bottom: 40px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--tmc-white);
    animation: pulse 3s infinite;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.profile-picture:hover {
    transform: scale(1.03);
}

h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tmc-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 2px 0;
    letter-spacing: 0.25px;
}

/* Section titles with Space Grotesk */
.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--tmc-white);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links section */
.links-section {
    margin: 25px 0;
}

.links-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

/* Card wrapper for badge positioning */
.card-wrapper {
    position: relative;
}

/* Link cards */
.link-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: var(--tmc-border-radius);
    overflow: visible;
    box-shadow: var(--tmc-shadow);
    transition: var(--transition-smooth);
    position: relative;
}

.link-card:hover {
    box-shadow: var(--tmc-shadow-hover);
}

.link-card.featured {
    position: relative;
    overflow: hidden; /* Needed for background clipping */
    border: none;
    min-height: 200px;
    background: none;
}

.link-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    text-decoration: none;
    color: var(--tmc-charcoal);
    min-height: 80px;
    transition: var(--transition-smooth);
}

.link-card:hover .link-content {
    background: linear-gradient(135deg, rgba(29, 34, 82, 0.05) 0%, rgba(62, 30, 112, 0.05) 100%);
}

.link-card.featured .link-content {
    position: relative;
    flex-direction: column;
    text-align: left;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px 30px;
    min-height: 200px;
    background: none;
    z-index: 2;
}

/* Background image container */
.link-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.3s ease-out;
    transform-origin: center center;
}

.link-card.featured[data-feature-type="photo"]::before {
    background-image: var(--card-bg-image);
    filter: sepia(1) saturate(1.5) hue-rotate(15deg) brightness(0.7) contrast(1.2);
}

/* Orange overlay filter for photos */
.link-card.featured[data-feature-type="photo"]::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: rgb(245, 130, 32, 0.6);
    z-index: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
}

/* Hover effects for featured cards */
.link-card.featured:hover::before {
    transform: scale(1.03);
}

/* Featured card styling */
.link-card.featured .link-image {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    margin-right: 0;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--tmc-border-radius);
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.link-card.featured .link-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Featured text with new typography */
.link-card.featured .link-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tmc-white);
    padding: 0;
    margin-bottom: 8px;
    letter-spacing: -0.25px;
}

.link-card.featured .link-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.15px;
}

/* Gradient backgrounds for non-photo featured cards */
.link-card.featured[data-feature-type="gradient"]::before {
    background: linear-gradient(135deg, rgb(29, 34, 82, 0.8) 30%, rgb(29, 34, 82, 0.5) 50%, rgb(29, 34, 82, 0.7) 80%);
}

.link-card.featured[data-feature-type="gradient"][data-gradient="primary"]::before {
    background: linear-gradient(61deg, #3E1E70 30%, #F58220 80%);
}

.link-card.featured[data-feature-type="gradient"][data-gradient="blue"]::before {
    background: linear-gradient(61deg, #1D2252 30%, #5087AB 100%);
}

.link-card.featured[data-feature-type="gradient"][data-gradient="softwhite"]::before {
    background: linear-gradient(61deg, rgb(255, 255, 255, 0.2) 30%, rgb(255, 255, 255, 0.1) 80%);
}

/* Regular link image styling */
.link-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(61deg, rgb(51, 51, 51,0.08) 0%, rgb(51, 51, 51,0.04) 100%);
    border-radius: var(--tmc-border-radius);
    padding: 12px;
}

.link-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Regular link text with new typography */
.link-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-primary);
    margin: 0;
    padding: 0;
    letter-spacing: -0.25px;
}

.link-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--tmc-slate-grey);
    letter-spacing: 0.15px;
}

/* Regular social links */
.link-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(61deg, rgb(51, 51, 51,0.08) 0%, rgb(51, 51, 51,0.04) 100%);
    border-radius: var(--tmc-border-radius-small);
    padding: 6px;
    flex-shrink: 0;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link-content span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-primary);
}

/* About section with new typography */
.about-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--tmc-border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 20px 0;
    padding: 25px 20px;
    backdrop-filter: blur(15px);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--tmc-border-radius-small);
    border: 2px solid rgb(255, 255, 255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-family: var(--font-body);
    font-weight: 450;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    letter-spacing: 0.15px;
}

.about-text a {
    color: var(--tmc-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.about-text a:hover {
    color: var(--brand-bright);
    border-bottom-color: var(--brand-bright);
}

/* Contact Section Styles */
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
    position: relative;
    overflow: visible;
}

/* Icon colors for contact methods */
.link-icon.signal {
    background: linear-gradient(135deg, #3a76f0 0%, #2454c7 100%);
    color: white;
    font-size: 1.1rem;
}

.link-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 1.1rem;
}

.link-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%);
    color: white;
    font-size: 1.1rem;
}

.link-icon.email {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-alt) 100%);
    color: white;
    font-size: 1.1rem;
}

/* CTA button styling in featured cards */
.featured-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--brand-primary);
    border-radius: var(--tmc-border-radius-small);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.link-card.featured:hover .featured-cta {
    background: var(--tmc-white);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social cards specific styling */
.social-card .link-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.social-card .link-text p {
    font-size: 0.9rem;
    color: var(--tmc-slate-grey);
}

/* Section title spacing */
.links-section .section-title {
    margin-bottom: 20px;
}

/* ========================================
   CONTEXT-AWARE BADGE SYSTEM
   ======================================== */

/* Badge element - positioned relative to wrapper */
.card-wrapper .card-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    z-index: 100;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card-wrapper .card-badge::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 31px;
    height: 31px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

/* ========================================
   PREFERRED BADGE - Context Dependent
   ======================================== */

/* DEFAULT: Preferred = Orange Star (for featured/social cards) */
.card-badge.preferred {
    background: linear-gradient(135deg,
        #FFB800 0%,
        #FF9500 50%,
        #FF8000 100%
    );
    box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
}

.card-badge.preferred::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>');
}

/* CONTACT CONTEXT: Preferred = Green Shield (secure + recommended) */
.card-wrapper:has(.contact-card) .card-badge.preferred {
    background: linear-gradient(135deg,
        #25D366 0%,
        #20BA5A 50%,
        #1AA250 100%
    );
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

.card-wrapper:has(.contact-card) .card-badge.preferred::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><polyline points="9 12 11 14 15 10"/></svg>');
}

/* ========================================
   HOT BADGE - Red Fire (trending/hot content)
   ======================================== */

.card-badge.hot {
    background: linear-gradient(135deg,
        #DC2626 0%,
        #B91C1C 50%,
        #991B1B 100%
    );
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.5);
}

.card-badge.hot::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" stroke="white" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><path d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"/></svg>');
}

/* ========================================
   PREMIUM BADGE - Deep Blue Diamond (professional/premium)
   ======================================== */

.card-badge.premium {
    background: linear-gradient(135deg,
        #1D2252 0%,
        #3E1E70 50%,
        #1D2252 100%
    );
    box-shadow: 0 3px 10px rgba(29, 34, 82, 0.5);
}

.card-badge.premium::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 25" fill="white" stroke="none"><path d="M1,10.2l3.36-5.27,2.18,5.27H1ZM7.95,9.38c1.35-1.77,2.71-3.55,4.06-5.32h-6.26c.73,1.77,1.47,3.55,2.2,5.32ZM17.05,9.38l2.2-5.32h-6.26s4.06,5.32,4.06,5.32ZM9.35,10.2h6.29c-1.05-1.38-2.1-2.75-3.15-4.13l-3.15,4.13ZM18.46,10.2h5.54l-3.36-5.27-2.18,5.27ZM1.24,11.81l9.12,9.12h.62l-3.77-9.12H1.24ZM12.5,20.39l3.58-8.57h-7.13l3.55,8.57ZM17.79,11.81l-3.77,9.12h.62l9.12-9.12h-5.97Z"/></svg>');
}


/* ========================================
   HOVER EFFECTS - Desktop Only
   ======================================== */

@media (hover: hover) and (pointer: fine) {
    /* Preferred - Orange Star (default context) */
    .card-wrapper:hover .card-badge.preferred {
        background: linear-gradient(135deg,
            #FFC933 0%,
            #FFB800 50%,
            #FF9500 100%
        );
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
    }

    /* Preferred - Green Shield (contact context) */
    .card-wrapper:has(.contact-card):hover .card-badge.preferred {
        background: linear-gradient(135deg,
            #2EE076 0%,
            #25D366 50%,
            #20BA5A 100%
        );
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }

    /* Hot - Red Fire */
    .card-wrapper:hover .card-badge.hot {
        background: linear-gradient(135deg,
            #EF4444 0%,
            #DC2626 50%,
            #B91C1C 100%
        );
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
    }

    /* Premium - Deep Blue Diamond */
    .card-wrapper:hover .card-badge.premium {
        background: linear-gradient(135deg,
            #2B3470 0%,
            #4D2B8C 50%,
            #2B3470 100%
        );
        box-shadow: 0 4px 15px rgba(29, 34, 82, 0.6);
    }

    /* Card hover effects */
    .link-card:hover {
        box-shadow: var(--tmc-shadow-hover);
    }

    .link-card:hover .link-content {
        background: linear-gradient(135deg, rgba(29, 34, 82, 0.05) 0%, rgba(62, 30, 112, 0.05) 100%);
    }

    /* Featured card hover effects */
    .link-card.featured:hover::before {
        transform: scale(1.03);
    }

    .link-card.featured:hover .featured-cta {
        background: var(--tmc-white);
        transform: scale(1.03);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Profile picture hover */
    .profile-picture:hover {
        transform: scale(1.03);
    }

    /* Language switcher hover */
    .lang-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        font-weight: 700;
    }

    /* About section link hover */
    .about-text a:hover {
        color: var(--brand-bright);
        border-bottom-color: var(--brand-bright);
    }
}

/* ========================================
   ACCESSIBILITY & SCREEN READERS
   ======================================== */

.card-badge[aria-label]::before {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}









/* Responsive design */
@media screen and (min-width: 768px) {
    .container {
        padding: 30px;
        border-radius: var(--tmc-border-radius);
        margin: 30px auto;
        box-shadow: var(--tmc-shadow-hover);
        min-height: auto;
    }

    .language-switcher {
        text-align: right;
        margin-bottom: 40px;
    }

    header {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 25px;
    }

    .profile-picture {
        margin-right: 40px;
        margin-bottom: 0;
    }

    .header-text {
        flex: 1;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .link-card.featured {
        min-height: 220px;
    }

    .link-card.featured .link-content {
        min-height: 220px;
        padding: 45px 35px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-content {
        gap: 35px;
    }

    .about-text p {
        font-size: 1rem;
    }

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

@media screen and (min-width: 1024px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make wrapper (and its featured card) span full width */
    .links-grid .card-wrapper:has(.link-card.featured) {
        grid-column: 1 / -1;
    }

    .link-card.featured {
        min-height: 240px;
    }

    .link-card.featured .link-content {
        min-height: 240px;
        padding: 50px 40px;
    }

    main {
        display: grid;
        gap: 60px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

/* Animation for page load ONLY */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-wrapper {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.card-wrapper:nth-child(3) { animation-delay: 0.3s; }
.card-wrapper:nth-child(4) { animation-delay: 0.4s; }
.card-wrapper:nth-child(5) { animation-delay: 0.5s; }
.card-wrapper:nth-child(6) { animation-delay: 0.6s; }
.card-wrapper:nth-child(7) { animation-delay: 0.7s; }
.card-wrapper:nth-child(8) { animation-delay: 0.8s; }


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}