/* Reports second-level submenu + download links (safe to deploy without footer CSS) */

.about-submenu-trigger {
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.about-submenu-chevron {
    font-size: 11px;
    color: #F47C26;
    transition: transform 0.2s ease;
}

.about-item_gridbox--has-submenu {
    position: relative;
    z-index: 1;
}

.about-item_gridbox--has-submenu:hover,
.about-item_gridbox--has-submenu:focus-within {
    z-index: 5;
}

.about-item_gridbox--has-submenu:hover .about-submenu-chevron,
.about-item_gridbox--has-submenu:focus-within .about-submenu-chevron {
    transform: rotate(90deg);
}

.navitem_submenu {
    display: none;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    left: 0;
    top: calc(100% - 4px);
    min-width: 100%;
    width: max-content;
    max-width: 340px;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    z-index: 120;
}

.about-item_gridbox--has-submenu:hover > .navitem_submenu,
.about-item_gridbox--has-submenu:focus-within > .navitem_submenu {
    display: flex;
}

.reports-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #E6EEF5;
    color: #3A3A3A;
    font-family: var(--fontone);
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.reports-download:hover {
    background: #d5e4f0;
    color: #3A3A3A;
    text-decoration: none;
}

.reports-download .download-icon {
    flex-shrink: 0;
    color: #F47C26;
    font-size: 14px;
    line-height: 1;
}

.mob-subitem {
    margin-bottom: 5px;
}

.mob-sublink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 15px;
    font-family: var(--fonttwo);
    color: var(--text-color);
    background-color: #fff;
    text-decoration: none;
}

.mob-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-left: 10px;
}

.mob-submenu .reports-download {
    background-color: #fff;
    margin-bottom: 5px;
    font-family: var(--fonttwo);
    font-size: 14px;
}
