/* ==== Policies header professionalism tweaks ==== */
.policies-hero {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

    .policies-hero img.img-cover {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        filter: saturate(1.02) contrast(1.02);
    }

    .policies-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.25));
        pointer-events: none;
    }

.policies-hero__badge {
    position: absolute;
    left: 16px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

    .policies-hero__badge .badge-en, .policies-hero__badge .badge-ar {
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(3px);
        border-radius: 999px;
        padding: 6px 12px;
        font-size: .85rem;
        font-weight: 600;
        color: #111;
        box-shadow: 0 4px 10px rgba(0,0,0,.07);
    }

.policies-head .title {
    font-weight: 800;
    letter-spacing: .2px;
}

.policies-head .title-small {
    margin-top: 2px;
    font-weight: 700;
    opacity: .92;
}

.policies-head .lead-en, .policies-head .lead-ar {
    margin-top: 10px;
    font-size: .98rem;
    color: #555;
}

.policies-note h3 {
    font-size: 1.05rem;
    margin: 6px 0 0;
}

.note-ar {
    font-weight: 600;
}

@media (max-width:575.98px) {
    .policies-hero img.img-cover {
        height: 200px;
    }

    .policies-hero__badge {
        left: 12px;
        bottom: 10px;
    }
}

/* ==== Policy list + actions ==== */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.policy-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.policy-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .policy-text .en {
        font-weight: 600;
    }

    .policy-text .ar {
        font-size: .95rem;
        opacity: .9;
    }

.policy-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #ddd;
    text-decoration: none;
}

    .btn-action:hover {
        background: #f7f7f7;
    }

    .btn-action:focus-visible {
        outline: 2px solid #0d6efd;
        outline-offset: 2px;
    }
