/* ===== PAGE TITLE ===== */
.page-title {
    font-weight: 700;
    color: #0d6efd;
}

/* ===== SECTION CARD ===== */
.section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 28px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b3c74;
    margin-bottom: 12px;
    border-left: 5px solid #0d6efd;
    padding-left: 10px;
}

/* ===== PARAGRAPHS ===== */
.section-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== LISTS ===== */
.section-card ul,
.section-card ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.section-card ul li,
.section-card ol li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* ===== TAG PILLS ===== */
.tag-pill {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 4px 6px 0 0;
}

/* ===== STAKEHOLDER HEADINGS ===== */
.section-card h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

/* ===== ICON COLOR ===== */
.section-card i {
    color: #0d6efd;
}

/* ===== LINKS ===== */
.section-card a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
}

.section-card a:hover {
    text-decoration: underline;
}

/* ===== SECURITY BLOCK ALIGNMENT ===== */
.section-card .border-right {
    border-right: 1px solid #dee2e6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .section-card {
        padding: 20px;
    }

    .section-title {
        font-size: 1rem;
    }

    .section-card .border-right {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}
