/* ==========================================================
   NMTDC CLEAN HERO V1
   ========================================================== */

/* identical top CTA styling */
.nmtdc-gold-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    min-width: 170px !important;
    min-height: 46px !important;

    padding: 11px 20px !important;

    box-sizing: border-box !important;

    border: 1px solid rgba(255, 224, 112, .95) !important;
    border-radius: 9px !important;

    background:
        linear-gradient(
            180deg,
            rgba(79,55,5,.92),
            rgba(20,14,2,.94)
        ) !important;

    color: #fff4bf !important;

    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-decoration: none !important;

    text-shadow:
        0 1px 2px #000,
        0 0 7px rgba(255,210,70,.50) !important;

    box-shadow:
        0 0 6px rgba(255,211,78,.85),
        0 0 15px rgba(255,179,0,.55),
        inset 0 0 10px rgba(255,206,64,.20) !important;

    cursor: pointer !important;
    transition:
        transform .15s ease,
        box-shadow .15s ease !important;
}

.nmtdc-gold-cta:hover {
    transform: translateY(-1px) !important;

    box-shadow:
        0 0 9px rgba(255,232,140,1),
        0 0 22px rgba(255,188,0,.85),
        0 0 38px rgba(255,152,0,.35),
        inset 0 0 12px rgba(255,220,100,.28) !important;
}

/* keep the three controls in a clean row */
.nmtdc-top-cta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

/* about wrapper must not add another box */
#nmtdc-about-audio-box {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* no little status line under About */
#nmtdc-about-status {
    display: none !important;
}

/* no double play triangle */
#nmtdc-about-triangle {
    display: none !important;
}

@media (max-width: 700px) {
    .nmtdc-gold-cta {
        min-width: 155px !important;
        font-size: 13px !important;
    }
}

/* ==========================================================
   NMTDC BUTTON BAR LOGO SEPARATION V2
   ========================================================== */

#nmtdc-unified-top-buttons {
    margin-top: 64px !important;
    margin-bottom: 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;

    position: relative !important;
    z-index: 20 !important;
}

/* Make sure the logo stays visually separate above the buttons */
img[src*="nmtdclogo"] {
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: 0 !important;
}

/* keep all three buttons lined up evenly */
#nmtdc-unified-top-buttons > a,
#nmtdc-unified-top-buttons > button,
#nmtdc-unified-top-buttons #nmtdc-about-play {
    min-width: 175px !important;
    min-height: 46px !important;
    margin: 0 !important;
}

#nmtdc-about-audio-box {
    margin: 0 !important;
    padding: 0 !important;
}

/* phones/tablets */
@media (max-width: 700px) {

    #nmtdc-unified-top-buttons {
        margin-top: 35px !important;
        gap: 9px !important;
    }

    #nmtdc-unified-top-buttons > a,
    #nmtdc-unified-top-buttons > button,
    #nmtdc-unified-top-buttons #nmtdc-about-play {
        min-width: 155px !important;
    }
}

