/**
 * SOP Pelayanan Publik - Card pelayanan publik
 */
.page-sop-layanan .sop-main {
    padding: 1.5rem 1rem 3rem;
    min-height: 60vh;
}
.sop-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 4vw, 1.5rem);
}
.sop-breadcrumb {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.sop-breadcrumb a {
    color: #1e40af;
    text-decoration: none;
}
.sop-breadcrumb a:hover {
    text-decoration: underline;
}
.sop-breadcrumb .sep {
    margin: 0 0.35rem;
}

/* Card pelayanan publik */
.sop-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.sop-card-pelayanan .sop-card-header {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #fff;
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.sop-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}
.sop-card-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
}
.sop-body {
    padding: 1.5rem clamp(1rem, 5vw, 2rem) 2rem;
    color: #334155;
    line-height: 1.7;
}
.sop-hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}
.sop-section {
    margin-bottom: 0.5rem;
}
.sop-h2 {
    font-size: 1.15rem;
    color: #0f766e;
    margin: 0 0 1rem 0;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid #ccfbf1;
    font-weight: 700;
}
.sop-h3 {
    font-size: 1rem;
    color: #134e4a;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}
.sop-h3:first-child {
    margin-top: 0;
}
.sop-body p {
    margin: 0 0 0.75rem 0;
}
.sop-ol, .sop-ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
}
.sop-ol li, .sop-ul li {
    margin-bottom: 0.35rem;
}
.sop-ol-numeric {
    list-style: decimal;
}
.sop-penetapan {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0fdfa;
    border-radius: 12px;
    border: 1px solid #99f6e4;
}
.sop-penetapan p {
    margin: 0.25rem 0;
}
.sop-ttd {
    margin-top: 2rem !important;
    font-style: italic;
    color: #64748b;
}

/* Tombol aksi */
.sop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}
.sop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sop-btn:hover {
    transform: translateY(-1px);
}
.sop-btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.35);
}
.sop-btn-primary:hover {
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.45);
}
.sop-btn-secondary {
    background: #fff;
    color: #0f766e;
    border: 2px solid #0d9488;
}
.sop-btn-secondary:hover {
    background: #f0fdfa;
}
