/* ---------------------------------
     REUSABLE HEADING CLASS
     Use: <h2 class="section-heading">Title</h2>
     Optional: <h2 class="section-heading section-heading--light">Title</h2> for dark backgrounds
  ----------------------------------*/
.section-heading {
    position: relative;
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    color: #0d1b4c;
    margin: 0 0 40px;
    padding-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #e0342a;
    border-radius: 2px;
}

.section-heading::after {
    content: "";
    position: absolute;
    left: 64px;
    bottom: 0;
    width: 16px;
    height: 4px;
    background: #0d1b4c;
    border-radius: 2px;
}

.section-heading--center {
    display: block;
    text-align: center;
}

.section-heading--center::before {
    left: 50%;
    transform: translateX(-38px);
}

.section-heading--center::after {
    left: 50%;
    transform: translateX(26px);
}

.section-heading--light {
    color: #ffffff;
}

.section-heading--light::after {
    background: #ffffff;
    opacity: 0.6;
}

/* small eyebrow / kicker heading, reusable too */
.kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e0342a;
    margin: 0 0 10px;
}

/* --------- TABLE --------- */
.team-table-wrap {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

table.team-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.team-table thead th {
    background: #0d1b4c;
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

table.team-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: #1c1c1c;
}

table.team-table tbody tr:last-child td {
    border-bottom: none;
}

table.team-table tbody tr:hover {
    background: #fafbfe;
}

table.team-table tr.group-row td {
    background: #f5f6f9;
    font-weight: 700;
    color: #0d1b4c;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 18px;
}

.wrap {
    background: #f5f6f9 !important;
}
.entry-content {
    padding: 60px 0;
    text-align: justify;
}