/* ==========================================================================
   SURVALE 2026 - Security Measures Page Styles
   Informational page — clean, readable layout with data table.
   ========================================================================== */

.security-measures-page {
    padding-top: calc(var(--header-height) + var(--notif-bar-height, 0px) + var(--space-5));
}

.security-details {
    padding: var(--space-12) 0 var(--space-16);
}

.security-details .container {
    max-width: 960px;
}

.security-details__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-2);
}

.security-details__subheading {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-10);
}

/* --------------------------------------------------------------------------
   PROSE (Data Privacy + GDPR sections)
   -------------------------------------------------------------------------- */
.security-details__prose {
    margin-bottom: var(--space-12);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.security-details__prose h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
}

.security-details__prose h2:first-child {
    margin-top: 0;
}

.security-details__prose p {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-base);
}

.security-details__prose p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   SECURITY MEASURES TABLE
   -------------------------------------------------------------------------- */
.security-details__table-heading {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
    margin-bottom: var(--space-8);
}

.security-details__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.security-details__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.security-details__table thead th {
    background: var(--color-orange, #f07c00);
    color: var(--color-white);
    font-weight: 700;
    text-align: left;
    padding: var(--space-3) var(--space-4);
    font-size: var(--font-size-sm);
}

.security-details__table thead th:first-child {
    width: 30%;
    border-radius: var(--radius-sm) 0 0 0;
}

.security-details__table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.security-details__table tbody td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-gray-200);
    vertical-align: top;
    color: var(--color-text-secondary);
}

.security-details__table tbody tr:nth-child(even) td {
    background: var(--color-gray-50);
}

.security-details__table tbody tr:last-child td {
    border-bottom: none;
}

.security-details__measure-name {
    font-weight: 600;
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .security-details {
        padding: var(--space-8) 0 var(--space-12);
    }

    .security-details__table thead th:first-child {
        width: 35%;
    }

    .security-details__table thead th,
    .security-details__table tbody td {
        padding: var(--space-3);
        font-size: var(--font-size-xs);
    }
}
