/* =========================================================
   DOCKSCHOLAR — ABOUT PAGE
========================================================= */

.about-hero {
    display: flex;
    align-items: center;
    gap: 28px;

    padding: 30px;
    margin-bottom: 34px;

    background: #FFFFFF;
    border: 1px solid #E1EAF3;
    border-radius: 16px;

    box-shadow: 0 4px 18px rgba(11, 45, 92, 0.05);
}

.about-logo {
    width: 90px;
    height: 90px;

    border-radius: 10px;
    background: #FFFFFF;

    box-shadow: 0 1px 3px rgba(0,0,0,0.08);

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

    overflow: hidden;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.about-hero-content {
    flex: 1;
    min-width: 0;
}

.about-hero-content p {
    width: 100%;
    max-width: none !important;

    margin-right: 0;
    box-sizing: border-box;
}

.eyebrow,
.section-kicker {
    display: block;

    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.eyebrow {
    margin-bottom: 1px;
}

.about-hero h2 {
    margin: 0 0 9px;

    color: var(--text);
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.about-hero p {
    max-width: 700px;
    margin: 0;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SECTIONS
========================================================= */

.about-section {
    margin-bottom: 38px;
}

.section-heading {
    margin-bottom: 18px;
}

.section-kicker {
    margin-bottom: 5px;
}

.section-heading h2 {
    margin: 0 0 5px;

    color: var(--text);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.section-heading p {
    max-width: 700px;
    margin: 0;

    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   TOOL CARDS
========================================================= */

.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tool-card {
    position: relative;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 15px;

    padding: 20px;

    background: #FFFFFF;
    border: 1px solid #E1EAF3;
    border-radius: 14px;

    color: inherit;
    text-decoration: none;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.tool-card:hover {
    transform: translateY(-2px);

    border-color: #C9D9E8;
    box-shadow: 0 7px 20px rgba(11, 45, 92, 0.07);
}

.tool-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

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

    border-radius: 10px;
    background: #EEF5FB;
    color: var(--primary);

    font-size: 19px;
    font-weight: 600;
}

.tool-card h3 {
    margin: 1px 0 5px;

    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
}

.tool-card p {
    margin: 0;

    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.tool-arrow {
    align-self: center;

    color: #9AAFC2;
    font-size: 18px;

    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.tool-card:hover .tool-arrow {
    color: var(--primary);
    transform: translateX(3px);
}


/* =========================================================
   PRINCIPLES
========================================================= */

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.principle-card {
    padding: 20px;

    background: #FFFFFF;
    border: 1px solid #E1EAF3;
    border-radius: 14px;
}

.principle-number {
    margin-bottom: 17px;

    color: #A7B8C8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.principle-card h3 {
    margin: 0 0 6px;

    color: var(--text);
    font-size: 15px;
}

.principle-card p {
    margin: 0;

    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   STORAGE / INFORMATION CARD
========================================================= */

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;

    background: #F7FAFD;
    border: 1px solid #E1EAF3;
    border-radius: 14px;
}

.info-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;

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

    border-radius: 9px;
    background: #E7F0F8;
    color: var(--primary);

    font-size: 16px;
}

.info-card h3 {
    margin: 1px 0 5px;

    color: var(--text);
    font-size: 14px;
}

.info-card p {
    max-width: 760px;
    margin: 0;

    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.info-card .info-note {
    margin-top: 7px;

    font-size: 11px;
    color: #91A0AF;
}


/* =========================================================
   FOOTER
========================================================= */

.about-footer {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 20px 2px 8px;

    color: #91A0AF;
    font-size: 11px;
}

.about-footer strong {
    color: var(--text);
}

.footer-separator {
    color: #C5D0DA;
}


/* =========================================================
   RESPONSIVE
========================================================= */

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

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

    .about-hero {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .about-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .about-logo {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        border-radius: 15px;
        font-size: 29px;
    }

    .about-hero h2 {
        font-size: 23px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .tool-card {
        grid-template-columns: auto 1fr;
    }

    .tool-arrow {
        display: none;
    }

    .about-footer {
        flex-wrap: wrap;
    }
}


/* =========================================================
   COLLAPSED SIDEBAR — ABOUT
========================================================= */

.sidebar.collapsed .sidebar-bottom .nav-item,
body.sidebar-collapsed .sidebar-bottom .nav-item {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.sidebar.collapsed .sidebar-bottom .nav-icon,
body.sidebar-collapsed .sidebar-bottom .nav-icon {
    margin: 0;
    width: auto;
}

