/*
 * OWS Dashboard - public "Guide for Authors" page.
 */
.ows_gfa_page {
    max-width: 1040px;
    margin: 0 auto;
}

.ows_gfa_breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7f79;
    margin-bottom: 14px;
}

.ows_gfa_breadcrumb a {
    color: #17615a;
    text-decoration: none;
}

.ows_gfa_breadcrumb_sep {
    color: #b8c7c1;
}

.ows_gfa_header {
    margin-bottom: 24px;
}

.ows_gfa_title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
    color: #0d3b36;
}

.ows_gfa_description {
    margin: 0;
    max-width: 800px;
    line-height: 1.7;
    color: #435953;
}

/* Quick-link cards */
.ows_gfa_quick_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.ows_gfa_quick_card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5eeea;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.ows_gfa_quick_card:hover {
    border-color: #17615a;
    background: #f6faf8;
}

.ows_gfa_quick_card_icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf4f0;
    color: #17615a;
}

.ows_gfa_quick_card_icon svg {
    width: 18px;
    height: 18px;
}

.ows_gfa_quick_card_title {
    display: block;
    font-weight: 700;
    color: #0d3b36;
    font-size: 14.5px;
}

.ows_gfa_quick_card_subtitle {
    display: block;
    font-size: 12px;
    color: #6b7f79;
    margin-top: 2px;
}

.ows_gfa_quick_card_arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 16px;
    height: 16px;
    color: #17615a;
}

.ows_gfa_quick_card_arrow svg {
    width: 100%;
    height: 100%;
}

/* Two-column body: TOC + sections */
.ows_gfa_body {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    align-items: start;
}

.ows_gfa_toc {
    background: #ffffff;
    border: 1px solid #e5eeea;
    border-radius: 8px;
    padding: 16px;
    position: sticky;
    top: 16px;
}

.ows_gfa_toc_heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7f79;
    margin-bottom: 10px;
}

.ows_gfa_toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ows_gfa_toc li {
    margin-bottom: 4px;
}

.ows_gfa_toc a {
    display: block;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 13px;
    color: #37473f;
    text-decoration: none;
}

.ows_gfa_toc a:hover {
    background: #eaf4f0;
    color: #0d3b36;
}

.ows_gfa_sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ows_gfa_section {
    background: #ffffff;
    border: 1px solid #e5eeea;
    border-radius: 8px;
    padding: 4px 20px;
}

.ows_gfa_section_summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
}

.ows_gfa_section_summary::-webkit-details-marker {
    display: none;
}

.ows_gfa_section_number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: #eaf4f0;
    color: #17615a;
    font-weight: 700;
    font-size: 12.5px;
}

.ows_gfa_section_title {
    flex: 1;
    font-weight: 700;
    color: #0d3b36;
    font-size: 15px;
}

.ows_gfa_section_toggle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #6b7f79;
}

.ows_gfa_section_toggle svg {
    width: 100%;
    height: 100%;
}

.ows_gfa_icon_minus {
    display: none;
}

.ows_gfa_section[open] .ows_gfa_icon_plus {
    display: none;
}

.ows_gfa_section[open] .ows_gfa_icon_minus {
    display: block;
}

.ows_gfa_section_content {
    padding: 0 0 18px 38px;
    color: #37473f;
    font-size: 13.5px;
    line-height: 1.75;
}

.ows_gfa_section_content p {
    margin: 0 0 12px;
}

.ows_gfa_section_content p:last-child {
    margin-bottom: 0;
}

.ows_gfa_section_content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.ows_gfa_section_content li {
    margin-bottom: 6px;
}

.ows_gfa_section_link a {
    color: #17615a;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .ows_gfa_quick_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ows_gfa_body {
        grid-template-columns: 1fr;
    }

    .ows_gfa_toc {
        position: static;
    }
}

@media (max-width: 560px) {
    .ows_gfa_quick_cards {
        grid-template-columns: 1fr;
    }
}
