.page-interventies {
    background: #f4f7f9;
    color: #4a4a4a;
}

.hero-card-lead-interventies {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4d63;
    text-align: justify;
}

.interventies-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    /* TODO: Add aside content */
    /* grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr); */
    gap: 24px;
    align-items: start;
}

.interventies-main,
.interventies-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interventies-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 40px;
    box-shadow: 0 8px 24px rgba(26, 59, 93, 0.08);
}

.interventies-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3b5d;
    margin-bottom: 14px;
}

.interventies-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.interventies-card p:last-child {
    margin-bottom: 0;
}

.interventies-list {
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a4a;
}

.interventies-list li {
    position: relative;
    padding-left: 1.35rem;
}

.interventies-list li+li {
    margin-top: 8px;
}

.interventies-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5a8fc4;
}

.interventies-table-wrap {
    overflow-x: auto;
}

.interventies-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.interventies-table th,
.interventies-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #e4eaf2;
    vertical-align: top;
}

.interventies-table th {
    font-weight: 700;
    color: #1a3b5d;
}

.interventies-table td {
    color: #4a4a4a;
}

.interventies-table tbody tr:last-child th,
.interventies-table tbody tr:last-child td {
    border-bottom: none;
}

.interventies-table .interventies-step {
    font-weight: 600;
    color: #1a3b5d;
    white-space: nowrap;
    width: 4rem;
}

.interventies-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.interventies-pill {
    display: block;
    text-decoration: none;
    color: #1a3b5d;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #dfe6ee;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.interventies-pill:hover {
    border-color: #c5d3e2;
    box-shadow: 0 4px 14px rgba(26, 59, 93, 0.1);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .interventies-grid {
        grid-template-columns: 1fr;
    }

    .interventies-inner,
    .interventies-card {
        padding: 24px;
    }
}