/* NAVBAR */

.navbar{
    position:fixed;
    top:24px;
    left:24px;
    width:auto;
    padding:0;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    z-index:1000;
    background:transparent;
    pointer-events:auto;
}

/* NAVBAR DESKTOP */

.desktop-nav{
    display:none;
    position:relative;
    align-items:center;
    justify-content:center;
    gap:34px;

    padding:15px 30px;

    background:
        linear-gradient(
            135deg,
            rgba(32,54,74,.32),
            rgba(32,54,74,.16)
        );

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.16);
    border-radius:28px;

    overflow:hidden;

    width:auto;
    max-width:520px;

    pointer-events:auto;

    transition:
        max-width .45s ease,
        padding .45s ease,
        gap .45s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.desktop-nav a{
    position:relative;
    font-size:.82rem;
    font-weight:700;
    color:var(--paper);
    text-transform:uppercase;
    letter-spacing:1.5px;
    text-shadow:0 2px 10px rgba(0,0,0,.25);
    white-space:nowrap;
    opacity:1;
    transform:translateX(0);
    transition:.35s ease;
}

.desktop-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:var(--red);
    transition:.3s ease;
}

.desktop-nav a:hover{
    color:var(--red);
}

.desktop-nav a:hover::after{
    width:100%;
}

/* ÍCONO HAMBURGUESA CUANDO SE CONTRAE */

.desktop-nav::before{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:24px;
    height:16px;
    transform:translate(-50%,-50%);
    opacity:0;
    pointer-events:none;

    background:
        linear-gradient(var(--paper),var(--paper)) 0 0 / 24px 2px no-repeat,
        linear-gradient(var(--paper),var(--paper)) 0 7px / 24px 2px no-repeat,
        linear-gradient(var(--paper),var(--paper)) 0 14px / 24px 2px no-repeat;

    transition:.3s ease;
}

/* NAVBAR CONTRAÍDA AL HACER SCROLL */

.navbar.scrolled .desktop-nav{
    max-width:58px;
    padding:16px 29px;
    gap:0;
    background:rgba(32,54,74,.62);
    border-color:rgba(255,255,255,.16);
}

.navbar.scrolled .desktop-nav::before{
    opacity:1;
}

.navbar.scrolled .desktop-nav a{
    opacity:0;
    pointer-events:none;
    transform:translateX(-12px);
}

/* NAVBAR EXPANDIDA EN HOVER */

.navbar.scrolled .desktop-nav:hover{
    max-width:520px;
    padding:15px 30px;
    gap:34px;
    background:rgba(236,227,211,.86);
    border-color:rgba(32,54,74,.12);
    box-shadow:0 12px 35px rgba(32,54,74,.08);
}

.navbar.scrolled .desktop-nav:hover::before{
    opacity:0;
}

.navbar.scrolled .desktop-nav:hover a{
    opacity:1;
    pointer-events:auto;
    transform:translateX(0);
    color:var(--blue-dark);
    text-shadow:none;
}

/* MENU MOBILE */

.menu-toggle{
    width:50px;
    height:50px;
    border:1px solid rgba(236,227,211,.7);
    background:rgba(32,54,74,.32);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:7px;
    cursor:pointer;
    z-index:1100;
    transition:.3s ease;
    pointer-events:auto;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:var(--paper);
    transition:.3s ease;
}

.navbar.scrolled .menu-toggle{
    background:rgba(32,54,74,.88);
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(3px,3px);
}

.menu-toggle.active span:nth-child(2){
    transform:rotate(-45deg) translate(3px,-3px);
}

/* FULLSCREEN MENU */

.fullscreen-menu{
    position:fixed;
    inset:0;
    width:100%;
    height:100dvh;
    background:rgba(32,54,74,.82);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    z-index:900;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:clamp(14px,2.2vh,24px);
    padding:90px 6% 50px;
    opacity:0;
    pointer-events:none;
    overflow:hidden;
    transition:.4s ease;
}

.fullscreen-menu.active{
    opacity:1;
    pointer-events:auto;
}

.fullscreen-menu a{
    position:relative;
    font-family:'Oswald',sans-serif;
    font-size:clamp(1.35rem,2.5vw,2.45rem);
    color:var(--paper);
    text-transform:uppercase;
    letter-spacing:2px;
    transition:.3s ease;
}

.fullscreen-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:3px;
    background:var(--red);
    transition:.3s ease;
}

.fullscreen-menu a:hover{
    color:var(--red);
}

.fullscreen-menu a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    min-height:100vh;
    background-image:url('../../img/hero/hero.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(32,54,74,.86) 0%,
        rgba(32,54,74,.55) 36%,
        rgba(32,54,74,.20) 70%,
        rgba(32,54,74,.05) 100%
    );
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:700px;
    padding-left:8%;
    padding-top:70px;
}

.hero-tag{
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.85rem;
}

.hero h1{
    font-size:clamp(3.8rem,7.5vw,7.8rem);
    line-height:.92;
    color:white;
    margin-top:14px;
    text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.hero p{
    font-size:1.2rem;
    margin-top:20px;
    color:var(--paper);
    max-width:480px;
    line-height:1.6;
}

/* INTRO */

.intro{
    background:var(--paper);
    position:relative;
    overflow:hidden;
}

.intro::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(179,33,33,.08), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(32,54,74,.10), transparent 35%);
    pointer-events:none;
}

.intro-grid{
    position:relative;
    display:grid;
    grid-template-columns:1fr .75fr;
    gap:70px;
    align-items:center;
}

.intro-content{
    max-width:760px;
}

.intro h2{
    font-size:clamp(2rem,3.25vw,3.55rem);
    line-height:1.18;
    color:var(--blue-dark);
    margin-top:16px;
    max-width:850px;
}

.intro p{
    margin-top:24px;
    max-width:680px;
    line-height:1.8;
    color:var(--blue-steel);
    font-size:1rem;
}

.history-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.history-image img{
    width:100%;
    max-width:380px;
    display:block;
    border:8px solid var(--paper-light);
    box-shadow:0 25px 55px rgba(32,54,74,.18);
    filter:grayscale(.15) contrast(1.05);
}

/* CURIOSITY SLIDER */

.curiosity-slider{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-top:0;
    min-height:500px;
    padding:100px 8vw 100px;

    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    position:relative;

    background:
    linear-gradient(
        to bottom,
        rgba(236,227,211,0) 0%,
        var(--paper) 18%,
        var(--paper) 78%,
        rgba(32,54,74,.06) 100%
    );
}

.curiosity-header{
    position:absolute;
    top:58px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    width:90%;
    max-width:760px;
    z-index:8;
}

.curiosity-header .section-tag{
    color:var(--red);
    font-size:1.05rem;
    letter-spacing:4px;
}


.curiosity-track{
    position:relative;
    width:100%;
    max-width:1050px;
    height:380px;
}

.curiosity-card{
    position:absolute;
    top:50%;
    left:50%;
    width:620px;
    min-height:340px;
    display:grid;
    grid-template-columns:230px 1fr;
    gap:28px;
    align-items:center;
    padding:28px;
    background:var(--paper-light);
    border:1px solid rgba(32,54,74,.14);
    box-shadow:0 24px 60px rgba(32,54,74,.14);
    opacity:0;
    transform:translate(-50%,-50%) scale(.75);
    pointer-events:none;
    transition:.55s ease;
}

.curiosity-card.active{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
    z-index:5;
    pointer-events:auto;
}

.curiosity-card.prev-card{
    opacity:.45;
    transform:translate(-105%,-50%) scale(.72);
    z-index:2;
}

.curiosity-card.next-card{
    opacity:.45;
    transform:translate(5%,-50%) scale(.72);
    z-index:2;
}

.curiosity-card img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    border:8px solid var(--paper);
    filter:grayscale(.15) contrast(1.05);
}

.curiosity-info span{
    display:inline-block;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:2px;
    color:var(--red);
    text-transform:uppercase;
}

.curiosity-info h3{
    margin-top:18px;
    font-size:1.85rem;
    line-height:1.1;
    color:var(--blue-dark);
}

.curiosity-info p{
    margin-top:16px;
    line-height:1.7;
    color:var(--blue-steel);
    font-size:.95rem;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:var(--blue-dark);
    color:var(--paper);
    font-size:2rem;
    cursor:pointer;
    z-index:10;
    transition:.3s ease;
}

.slider-btn:hover{
    background:var(--red);
}

.slider-btn.prev{
    left:calc(50% - 430px);
}

.slider-btn.next{
    right:calc(50% - 430px);
}

/* TIMELINE EN S */

.timeline-section{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-top:100px;
    padding:120px 8vw 130px;
    position:relative;
    background:var(--paper);
}


.timeline-section > .section-tag{
    display:block;
    text-align:center;
    margin-bottom:90px;
    font-size:1rem;
    letter-spacing:4px;
}

.timeline-s{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:86px;
    max-width:1180px;
    margin:0 auto;
}

.timeline-s::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:50%;
    width:3px;
    transform:translateX(-50%);
    background:linear-gradient(
        to bottom,
        transparent,
        rgba(179,33,33,.55),
        rgba(32,54,74,.25),
        transparent
    );
}

.timeline-step{
    position:relative;
    display:grid;
    grid-template-columns:minmax(220px,300px) 90px minmax(300px,520px);
    align-items:center;
    justify-content:center;
    gap:34px;
    cursor:pointer;
    opacity:0;
    transform:translateY(60px);
    transition:opacity .8s ease, transform .8s ease;
}

.timeline-step.active{
    opacity:1;
    transform:translateY(0);
}

.timeline-step:nth-child(odd) .timeline-image{
    grid-column:1;
    grid-row:1;
    justify-self:end;
}

.timeline-step:nth-child(odd) .timeline-content{
    grid-column:3;
    grid-row:1;
    text-align:left;
}

.timeline-step:nth-child(even){
    grid-template-columns:minmax(300px,520px) 90px minmax(220px,300px);
}

.timeline-step:nth-child(even) .timeline-content{
    grid-column:1;
    grid-row:1;
    text-align:right;
}

.timeline-step:nth-child(even) .timeline-image{
    grid-column:3;
    grid-row:1;
    justify-self:start;
}

.timeline-point{
    grid-column:2;
    grid-row:1;
    width:72px;
    height:72px;
    background:var(--red);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    z-index:3;
    box-shadow:0 16px 35px rgba(179,33,33,.28);
    transform:scale(.75);
    transition:.35s ease;
}

.timeline-step.active .timeline-point{
    transform:scale(1);
}

.timeline-step:hover .timeline-point{
    background:var(--blue-dark);
    transform:scale(1.08);
}

.timeline-point span{
    color:white;
    font-weight:800;
    font-size:.9rem;
}

.timeline-content{
    max-width:520px;
    background:var(--paper-light);
    border:1px solid rgba(32,54,74,.14);
    border-radius:18px;
    padding:30px 34px;
    box-shadow:0 20px 45px rgba(32,54,74,.08);
    transition:.35s ease;
}

.timeline-step:hover .timeline-content{
    border-color:var(--red);
    box-shadow:0 22px 55px rgba(179,33,33,.14);
}

.timeline-content h3{
    font-size:1.45rem;
    line-height:1.16;
    color:var(--blue-dark);
}

.timeline-content p{
    margin-top:14px;
    line-height:1.65;
    color:var(--blue-steel);
    font-size:.92rem;
}

.timeline-image{
    width:100%;
    max-width:280px;
    aspect-ratio:4 / 3;
    padding:10px;
    background:var(--paper-light);
    border:3px solid var(--paper-light);
    border-radius:16px;
    box-shadow:0 18px 40px rgba(32,54,74,.10);
    overflow:hidden;
    opacity:0;
    transform:scale(.95);
    transition:
        opacity .8s ease .2s,
        transform .8s ease .2s,
        border-color .35s ease,
        box-shadow .35s ease;
}

.timeline-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:10px;
    filter:grayscale(.15) contrast(1.05);
    transition:.35s ease;
}

.timeline-step.active .timeline-image{
    opacity:1;
    transform:scale(1);
}

.timeline-step:hover .timeline-image{
    border-color:var(--red);
    box-shadow:0 22px 55px rgba(179,33,33,.22);
}

.timeline-step:hover .timeline-image img{
    transform:scale(1.05);
    filter:grayscale(0) contrast(1.1);
}
/* CHAPTERS */

.chapters{
    background:var(--paper-light);
}

.section-header h2{
    font-size:clamp(2rem,3.4vw,3.8rem);
    line-height:1.12;
    color:var(--blue-dark);
    margin-top:14px;
    max-width:900px;
}

.chapters-grid{
    margin-top:56px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.chapter-card{
    min-height:290px;
    padding:32px;
    background:var(--paper);
    color:var(--text);
    border:1px solid rgba(32,54,74,.15);
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.chapter-card:hover{
    transform:translateY(-8px);
    border-color:var(--red);
}

.chapter-card span{
    font-family:'Oswald',sans-serif;
    font-size:3.4rem;
    color:var(--red);
}

.chapter-card h3{
    font-size:1.8rem;
    line-height:1.15;
    margin-top:24px;
    color:var(--blue-dark);
}

.chapter-card p{
    margin-top:14px;
    line-height:1.7;
    color:var(--blue-steel);
}

/* TRANSMEDIA */

.transmedia{
    background:var(--blue-dark);
    color:white;
}

.light h2{
    color:white;
}

.transmedia-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:56px;
}

.media-card{
    padding:34px;
    min-height:220px;
    border:1px solid rgba(255,255,255,.16);
    color:white;
    transition:.35s ease;
}

.media-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.06);
    border-color:var(--gold);
}

.media-card h3{
    font-size:1.8rem;
    color:var(--gold);
}

.media-card p{
    margin-top:16px;
    line-height:1.7;
    color:rgba(255,255,255,.78);
}

/* LEGACY */

.legacy{
    text-align:center;
    background:var(--paper);
}

.legacy h2{
    font-size:clamp(2.1rem,3.8vw,4.2rem);
    max-width:900px;
    margin:auto;
    line-height:1.12;
    color:var(--blue-dark);
}

.legacy p{
    margin-top:22px;
    font-size:1.15rem;
    color:var(--blue-steel);
}

/* CHOICE SECTION */

.choice-section{
    background:var(--blue-dark);
    padding:80px 8% 105px;
    color:var(--paper);
    margin-top:-90px;
    position:relative;
    z-index:3;
}

.choice-header{
    max-width:780px;
    margin-bottom:52px;
}

.choice-header .section-tag{
    color:var(--gold);
}

.choice-header h2{
    margin-top:14px;
    font-size:clamp(2rem,3.6vw,4rem);
    line-height:1.04;
    color:var(--paper);
}

.choice-header p{
    max-width:600px;
    margin-top:18px;
    line-height:1.75;
    color:rgba(255,255,255,.76);
}

.choice-grid{
    display:flex;
    gap:22px;
    min-height:460px;
}

.choice-card{
    position:relative;
    flex:1;
    overflow:hidden;
    border-radius:30px;
    color:white;
    min-height:460px;
    display:flex;
    align-items:flex-end;
    padding:40px;
    isolation:isolate;

    border:1px solid rgba(255,255,255,.12);

    transition:
        flex .6s cubic-bezier(.22,1,.36,1),
        transform .45s ease,
        box-shadow .45s ease,
        border-color .35s ease;
}

.choice-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    transition:.45s ease;
}

.choice-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    opacity:0;
    transition:.45s ease;
}

.choice-chapters::before{
    background:linear-gradient(
        180deg,
        rgba(32,54,74,.10),
        rgba(32,54,74,.92)
    );
}

.choice-comic::before{
    background:linear-gradient(
        180deg,
        rgba(179,33,33,.12),
        rgba(82,14,14,.94)
    );
}

.choice-chapters::after{
    background:rgba(32,54,74,.28);
}

.choice-comic::after{
    background:rgba(179,33,33,.26);
}

.choice-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(.35) contrast(1.05) brightness(.9);
    transform:scale(1);
    transition:.6s cubic-bezier(.22,1,.36,1);
    z-index:0;
}

.choice-content{
    position:relative;
    z-index:3;
    max-width:430px;
}

.choice-content span{
    display:inline-block;
    color:var(--gold);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.choice-content h2{
    margin-top:14px;
    font-size:clamp(2rem,3vw,3.2rem);
    line-height:1;
    color:white;
}

.choice-content p{
    margin-top:16px;
    line-height:1.65;
    color:rgba(255,255,255,.84);
}

.choice-content strong{
    display:inline-block;
    margin-top:26px;
    padding:13px 22px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:50px;
    color:white;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:.78rem;
    transition:.35s ease;
}

.choice-grid:hover .choice-card{
    flex:.78;
    opacity:.78;
}

.choice-grid .choice-card:hover{
    flex:1.28;
    opacity:1;
    transform:translateY(-6px);
    box-shadow:0 30px 80px rgba(0,0,0,.32);
    border-color:rgba(255,255,255,.22);
}

.choice-card:hover::after{
    opacity:1;
}

.choice-card:hover img{
    transform:scale(1.08);
    filter:grayscale(0) contrast(1.12) brightness(1);
}

.choice-card:hover .choice-content strong{
    background:var(--red);
    border-color:var(--red);
}

/* FOOTER */

footer{
    background:var(--red);
    color:white;
    margin-top:0;
}

.footer-container{
    display:grid;
    grid-template-columns:1.2fr 1.4fr .8fr;
    gap:70px;

    padding:60px 8%;
}

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

.footer-column h3{
    font-size:1.8rem;
    color:white;
    margin-bottom:18px;
}

.footer-column h4{
    font-size:1rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:white;
    margin-bottom:18px;
}

.footer-column p{
    line-height:1.8;
    color:rgba(255,255,255,.85);
    font-size:.95rem;
}

.footer-social{
    display:flex;
    flex-direction:column;
}

.social-links{
    display:flex;
    gap:18px;
    margin-top:12px;
}

.social-links a{
    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;

    transition:.3s ease;
}

.social-links a:hover{
    transform:translateY(-4px);
    background:#8f1717;
    border-color:#8f1717;
}

.social-links img{
    width:30px;
    height:30px;
    display:block;
    filter:brightness(0) invert(1);
}

.footer-bottom{
    height:52px;
    background:#8f1717;
    border-top:1px solid rgba(255,255,255,.08);
}

/* MODAL HISTÓRICO */

.history-modal{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:40px;
}

.history-modal.active{
    display:flex;
}

.modal-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.68);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.modal-content{
    position:relative;
    z-index:100000;
    width:min(1000px,90vw);
    max-height:84vh;

    background:var(--paper-light);
    display:grid;
    grid-template-columns:360px 1fr;

    border-radius:26px;
    overflow:hidden;

    box-shadow:0 35px 100px rgba(0,0,0,.38);
}

.modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:var(--blue-dark);
    color:white;
    font-size:1.8rem;
    cursor:pointer;
    z-index:100001;
    transition:.3s ease;
}

.modal-close:hover{
    background:var(--red);
}

.modal-image{
    padding:24px;
    background:var(--paper);
    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-image img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    border:8px solid var(--paper-light);
    border-radius:16px;
    box-shadow:0 18px 45px rgba(32,54,74,.16);
}

.modal-text{
    padding:56px 58px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.modal-year{
    color:var(--red);
    font-weight:800;
    letter-spacing:2px;
    font-size:.9rem;
}

.modal-text h2{
    margin-top:12px;
    font-size:clamp(1.7rem,2.5vw,2.8rem);
    line-height:1.08;
    color:var(--blue-dark);
    max-width:700px;
}

.modal-text p{
    margin-top:22px;
    line-height:1.9;
    color:var(--blue-steel);
    font-size:1rem;
    max-width:680px;
}

/* AUDIO PLAYER */

.audio-player{
    margin-top:30px;
    width:100%;
    max-width:420px;
    height:64px;

    border:none;
    border-radius:50px;

    background:var(--red);
    color:white;

    display:flex;
    align-items:center;
    gap:18px;

    padding:0 22px;
    cursor:pointer;

    transition:.3s ease;
}

.audio-player:hover{
    background:#8f1717;
    transform:translateY(-3px);
}

.audio-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    background:white;
    color:var(--red);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.9rem;
    font-weight:800;
    flex-shrink:0;
}

.audio-wave{
    flex:1;
    height:28px;
    display:block;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.95) 0 3px,
            transparent 3px 9px
        );

    mask-image:
        radial-gradient(ellipse at center, black 55%, transparent 72%);
    -webkit-mask-image:
        radial-gradient(ellipse at center, black 55%, transparent 72%);
}

.audio-time{
    font-weight:800;
    letter-spacing:1px;
    font-size:.8rem;
    text-transform:uppercase;
}