/* ── Shared base untuk semua halaman Tentang ── */

body { background-color: #f4f6fb !important; }

.tentang-section {
    padding: 100px 7% 70px;
    min-height: 100vh;
}

/* ── Page title ── */
.tentang-title-wrap {
    text-align: center;
    margin-bottom: 36px;
}

.tentang-title-wrap h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color1);
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin: 0;
}

.tentang-title-wrap h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color1), var(--color4));
    border-radius: 3px;
}

/* ── Card base ── */
.tentang-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(27, 68, 156, 0.08);
    padding: 28px 32px;
    margin-bottom: 20px;
    border: 1px solid rgba(27, 68, 156, 0.06);
}

/* ── Section label ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-label-bar {
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--color1), var(--color4));
    border-radius: 4px;
    flex-shrink: 0;
}

.section-label h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
    margin: 0;
}

/* ── Content area ── */
.section-content {
    color: #4b5563;
    font-size: 14.5px;
    line-height: 1.85;
    text-align: justify;
}

.section-content ol,
.section-content ul {
    padding-left: 20px;
    margin: 8px 0;
}

.section-content li { margin-bottom: 6px; }

/* ── Two-column grid ── */
.tentang-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* ── Admin edit button ── */
.admin-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-edit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    background: var(--color1);
    color: #ffffff !important;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.btn-edit:hover {
    background: #153a80;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 68, 156, 0.25);
}

/* ── PDF iframe ── */
.iframe-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(27, 68, 156, 0.1);
    box-shadow: 0 4px 16px rgba(27, 68, 156, 0.08);
}

.iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 560px;
    border: none;
}

/* ── Empty state ── */
.tentang-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.tentang-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: rgba(27, 68, 156, 0.18);
    display: block;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .tentang-section { padding: 90px 16px 50px; }
    .tentang-card { padding: 20px 16px; border-radius: 14px; }
    .tentang-title-wrap h1 { font-size: 21px; }
    .tentang-two-col { grid-template-columns: 1fr; gap: 16px; }
    .iframe-wrap iframe { height: 380px; }
}
