/* Safety & Security page */

.page-safety .saf-hero-split__img {
    margin-bottom: 0;
    height: 100%;
}

.page-safety .saf-hero-split__img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.page-safety .saf-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
    margin-bottom: 0;
}

.page-safety .saf-stat {
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(26, 102, 166, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-interactive);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.page-safety .saf-stat:hover {
    border-color: rgba(26, 102, 166, 0.2);
    box-shadow: var(--shadow-md);
}

.page-safety .saf-stat__value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.page-safety .saf-stat__label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, #5a6a7a);
}

.page-safety .saf-section {
    margin-bottom: 2.5rem;
}

.page-safety .saf-section__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(26, 102, 166, 0.12);
}

.page-safety .saf-section__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.35rem;
    background: rgba(26, 102, 166, 0.08);
}

.page-safety .saf-section--physical .saf-section__icon {
    background: rgba(26, 102, 166, 0.1);
}

.page-safety .saf-section--emotional .saf-section__icon {
    background: rgba(15, 118, 110, 0.1);
}

.page-safety .saf-section--emotional .saf-section__head {
    border-bottom-color: rgba(15, 118, 110, 0.2);
}

.page-safety .saf-section__head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.page-safety .saf-section__head p {
    font-size: 0.88rem;
    color: var(--text-muted, #5a6a7a);
    margin: 0.15rem 0 0;
}

.page-safety .saf-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.15rem;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 102, 166, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-interactive);
}

.page-safety .saf-section--emotional .saf-card {
    border-color: rgba(15, 118, 110, 0.12);
}

.page-safety .saf-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.page-safety .saf-card__icon {
    flex-shrink: 0;
    font-size: 1.15rem;
    line-height: 1;
    margin-top: 0.1rem;
}

.page-safety .saf-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #000;
}

.page-safety .saf-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.page-safety .saf-related a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(26, 102, 166, 0.06);
    border: 1px solid rgba(26, 102, 166, 0.12);
    text-decoration: none;
    transition: var(--transition-interactive);
}

.page-safety .saf-related a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 767.98px) {
    .page-safety .saf-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-safety .saf-stat:hover,
    .page-safety .saf-card:hover {
        transform: none;
    }
}
