.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/notice-for-shareholders-banner.jpg");
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/notice-for-shareholders-banner.jpg");
    }
}

/* Base Styles */
.accordion {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

.accordion-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.accordion-tab {
    font-family: Urbanist;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    padding: 16px 32px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 16px;
}

.accordion-tab:last-child {
    border-right: none;
}

.accordion-tab.active {
    background-color: #141E47;
    color: #fff;
}

.accordion-content-container {
    display: block;
}

.accordion-content {
    display: none;
    padding: 32px 0;
    border-top: 1px solid #ccc;
}

.document-container{
    margin-bottom: 64px;
}

.document-headline > h2{
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    margin-bottom: 16px;
}

/* Responsive Styles for Mobile */
@media (max-width: 430px) {
    .accordion-tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .accordion-tab {
        border-bottom: 1px solid #ccc;
        border-right: none;
        text-align: left;
        padding-left: 20px;
    }

    .accordion-tab.active+.accordion-content {
        display: block;
    }
}

/* Make H2 not fight with the button */
.document-title-row>h2 {
    margin: 0 0 12px 0;
}

/* Accordion toggle */
.document-audio-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.document-audio-toggle:focus-visible {
    outline: 2px solid #141E47;
    outline-offset: 6px;
    border-radius: 10px;
}

/* Chevron */
.document-audio-chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    transform: rotate(45deg);
    transition: transform 220ms ease;
    flex: 0 0 12px;
}

.document-audio-toggle[aria-expanded="true"] .document-audio-chevron {
    transform: rotate(-135deg);
}

/* Accordion panel animation */
.document-audio-panel {
    margin-top: 16px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 260ms ease;
}

.document-audio-panel.is-open {
    /* max-height set via JS inline for smooth animation */
}

.document-audio-wrapper {
    background: #ffffff;
    border-radius: 50px;
    padding: 0;
    /* key: removes the extra inner white padding */
    overflow: hidden;
    /* clips native control edges cleanly */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* optional, gives separation from #f0f2f4 */
}

.document-audio {
    width: 100%;
    display: block;
    margin: 0;
    border-radius: 0;
    /* wrapper handles rounding */
    background: transparent;
    /* let wrapper be the visible background */
}

/* Chrome/Edge/Safari: force the native controls panel to white */
.document-audio::-webkit-media-controls-panel {
    background-color: #ffffff !important;
}

/* Optional: remove extra inner rounding so it looks like one clean bar */
.document-audio::-webkit-media-controls-enclosure {
    border-radius: 0 !important;
    background-color: #ffffff !important;
}

/* Optional: if you still see a tint in some builds */
.document-audio::-webkit-media-controls {
    background-color: #ffffff !important;
}

/* Speed + download row */
.document-audio-controls {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.document-speed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.document-speed-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

.document-speed-select {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.document-speed-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.document-download {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #141E47;
    text-decoration: none;
}

.document-download:hover {
    text-decoration: underline;
}