/* =========================
   HERO
========================= */

.about-hero {
    display: flex;

    align-items: center;

    gap: 22px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 27px;

    box-shadow: var(--shadow);
}

.about-hero-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: flex;

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

    background: #fff7ed;

    color: #f59e0b;

    border-radius: 16px;

    font-size: 31px;
}

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

    margin-bottom: 9px;
}

.about-hero p {
    max-width: 850px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   ABOUT GRID
========================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-top: 18px;
}

.about-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 23px;

    box-shadow: var(--shadow);
}

.about-card-icon {
    width: 42px;
    height: 42px;

    display: flex;

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

    background: #f9fafb;

    color: #6b7280;

    border-radius: 11px;

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 18px;
}

.about-card h2 {
    font-size: 17px;

    margin-bottom: 11px;
}

.about-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin-top: 9px;
}


/* =========================
   BMKG
========================= */

.bmkg-section {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 23px;

    box-shadow: var(--shadow);

    margin-top: 18px;
}

.bmkg-section .section-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;
}

.bmkg-section h2 {
    font-size: 18px;

    margin-top: 4px;
}

.bmkg-section p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 5px;
}

.bmkg-button {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 10px 14px;

    border-radius: 9px;

    background: #f3f4f6;

    color: #374151;

    text-decoration: none;

    font-size: 11px;

    font-weight: 650;

    transition: 0.2s;
}

.bmkg-button:hover {
    background: #e5e7eb;
}


/* =========================
   CATEGORY TABLE
========================= */

.uv-category-table {
    border: 1px solid var(--border);

    border-radius: 11px;

    overflow: hidden;
}

.uv-category-header,
.uv-category-row {
    display: grid;

    grid-template-columns:
        1fr 1fr 2fr;

    align-items: center;

    padding: 13px 16px;
}

.uv-category-header {
    background: #f9fafb;

    color: #6b7280;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;
}

.uv-category-row {
    border-top: 1px solid #f3f4f6;

    color: #4b5563;

    font-size: 11px;
}

.uv-category-row strong {
    color: #111827;

    font-size: 12px;
}


/* =========================
   PROTECTION
========================= */

.protection-card {
    margin-top: 18px;

    background: #fffbeb;

    border: 1px solid #fde68a;

    border-radius: 16px;

    padding: 23px;
}

.protection-card h2 {
    font-size: 17px;

    margin-top: 4px;
}

.protection-card p {
    max-width: 900px;

    color: #78716c;

    font-size: 12px;

    line-height: 1.7;

    margin-top: 10px;
}


/* =========================
   SYSTEM
========================= */

.system-section {
    margin-top: 30px;
}

.system-section h2 {
    font-size: 18px;
}

.system-section p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 5px;
}

.system-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    margin-top: 16px;
}

.system-item {
    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 16px;
}

.system-item span {
    display: block;

    color: #9ca3af;

    font-size: 10px;

    margin-bottom: 6px;
}

.system-item strong {
    font-size: 13px;
}


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

@media (max-width: 850px) {

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

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

}

@media (max-width: 600px) {

    .about-hero {
        align-items: flex-start;

        flex-direction: column;
    }

    .bmkg-section .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .uv-category-header,
    .uv-category-row {
        grid-template-columns:
            1fr 1fr;
    }

    .uv-category-header span:last-child,
    .uv-category-row span:last-child {
        display: none;
    }

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

}