/* =========================================================
   FIDES CAMINA — CONTENIDO FOTOGRÁFICO INSTITUCIONAL
   Complemento visual para imágenes reales de sucursales,
   personal, dirección y atención a clientes.
   ========================================================= */

/* HOME: primer slide con fotografía real */
.hero-slide.real-finance-slide {
    background-position: center 48%;
}

.hero-slide.real-finance-slide .hero-overlay {
    background:
        linear-gradient(90deg, rgba(3,24,46,.94) 0%, rgba(3,24,46,.78) 38%, rgba(3,24,46,.28) 70%, rgba(3,24,46,.08) 100%);
}

.corporate-feature img {
    object-position: center 45%;
}

/* QUIÉNES SOMOS */
.page-hero.real-hero {
    background-position: center;
}

.page-hero.real-hero .page-hero-overlay {
    background: linear-gradient(90deg, rgba(5,32,58,.93) 0%, rgba(5,32,58,.82) 38%, rgba(5,32,58,.35) 67%, rgba(5,32,58,.12) 100%);
}

.corporate-story-grid {
    gap: clamp(2rem, 5vw, 4rem);
}

.corporate-story-note {
    display: grid;
    gap: .35rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1.2rem;
    border-left: 4px solid var(--green);
    border-radius: 0 16px 16px 0;
    background: #f2f9f5;
}

.corporate-story-note strong {
    color: var(--navy);
}

.corporate-story-note span {
    color: var(--muted);
    line-height: 1.65;
}

.corporate-real-media {
    position: relative;
    min-height: 520px;
}

.corporate-real-media img {
    min-height: 520px;
    object-position: center 43%;
}

.corporate-real-media figcaption {
    position: absolute;
    left: 1.15rem;
    bottom: 1.15rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    background: rgba(5,32,58,.86);
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
}

/* EQUIPO */
.page-hero.team-real-hero {
    background-position: center 44%;
}

.team-intro-section {
    padding-bottom: 2.4rem;
}

.team-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
}

.team-intro-grid h2 {
    margin: .25rem 0 0;
    color: var(--navy);
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.team-intro-grid > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.leadership-section {
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -160px;
    top: -170px;
    background: radial-gradient(circle, rgba(8,166,80,.10), transparent 68%);
}

.leadership-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.leadership-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.leadership-photo {
    height: 360px;
    overflow: hidden;
    background: #edf3f6;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transition: transform .45s ease;
}

.leadership-card:hover .leadership-photo img {
    transform: scale(1.025);
}

.leadership-body {
    padding: 1.55rem 1.65rem 1.75rem;
}

.leadership-body h3 {
    margin: .65rem 0 .55rem;
    color: var(--navy);
    font-size: 1.65rem;
    line-height: 1.12;
}

.leadership-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.team-closing-section {
    padding-top: 2.5rem;
}

.team-closing-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.7rem, 4vw, 2.6rem);
    border-radius: 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    box-shadow: 0 24px 54px rgba(5,34,63,.18);
}

.team-closing-box h2 {
    margin: .25rem 0 .55rem;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.team-closing-box p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}

/* PRODUCTOS: foto real de atención */
.product-card.real-product-photo > img {
    object-position: center 46%;
}

/* CONTACTO: fotografías reales de las instalaciones */
.contact-branch-photo.contact-facade img {
    object-position: center;
}

.contact-branch-photo.rivas-facade img {
    object-position: center 54%;
}

.contact-branch-photo.managua-facade img {
    object-position: center 52%;
}

.contact-branch-photo.contact-facade::before {
    content: "Sucursal";
    position: absolute;
    z-index: 2;
    left: .9rem;
    top: .9rem;
    padding: .32rem .58rem;
    border-radius: 999px;
    background: rgba(255,255,255,.90);
    color: var(--navy);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .team-intro-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leadership-photo {
        height: 420px;
    }

    .team-closing-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .hero-slide.real-finance-slide {
        background-position: 62% center;
    }

    .page-hero.real-hero {
        background-position: 67% center;
    }

    .page-hero.team-real-hero {
        background-position: center 42%;
    }

    .corporate-real-media,
    .corporate-real-media img {
        min-height: 390px;
    }

    .leadership-photo {
        height: 290px;
    }

    .team-closing-box .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leadership-photo img {
        transition: none;
    }
}

/* =========================================================
   AJUSTES DE ENCUADRE SOLICITADOS - AGOSTO 2026
   ========================================================= */

/* HOME: mostrar más del rostro y de la escena del desembolso. */
@media (min-width: 861px) {
    .hero-carousel {
        height: min(880px, 94vh);
        min-height: 720px;
    }

    .hero-slide.real-finance-slide {
        background-position: center top;
    }

    /* QUIÉNES SOMOS: más altura y menor recorte superior del rótulo. */
    .page-hero.real-hero {
        min-height: 620px;
        background-position: center top;
    }

    .page-hero.real-hero .hero-cover-inner {
        min-height: 620px;
    }

    /* EQUIPO: desplazar encuadre hacia arriba para mostrar cabezas completas. */
    .page-hero.team-real-hero {
        min-height: 640px;
        background-position: center top;
    }

    .page-hero.team-real-hero .hero-cover-inner {
        min-height: 640px;
    }
}

/* CONTACTO: fotografías clicables */
.branch-photo-button {
    appearance: none;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: zoom-in;
}

.branch-photo-button:focus-visible {
    outline: 4px solid rgba(8, 166, 80, .35);
    outline-offset: -4px;
}

.branch-photo-button img {
    transition: transform .35s ease, filter .35s ease;
}

.branch-photo-button:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.branch-photo-hint {
    position: absolute;
    z-index: 3;
    right: .85rem;
    bottom: .9rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .3rem .55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--navy);
    font-size: .65rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.complaints-channel-card > a,
.doc-contact-email a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.doc-contact-email {
    margin: .8rem 0 0;
    font-size: .84rem;
    line-height: 1.4;
}

.doc-contact-email a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
}

.doc-contact-email a:hover {
    text-decoration: underline;
}

/* Modal de fotografías de sucursales */
.image-viewer-modal[hidden] {
    display: none;
}

.image-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 20px;
}

.image-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 23, 42, .82);
    backdrop-filter: blur(6px);
}

.image-viewer-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 30px));
    max-height: 92vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    background: #071f37;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.image-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 66px;
    padding: .85rem 1rem .85rem 1.25rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.image-viewer-header strong {
    font-size: 1rem;
}

.image-viewer-close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.image-viewer-close:hover {
    background: rgba(255,255,255,.24);
}

.image-viewer-body {
    display: grid;
    place-items: center;
    max-height: calc(92vh - 66px);
    overflow: auto;
    background: #071f37;
}

.image-viewer-body img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 66px);
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 860px) {
    .page-hero.real-hero,
    .page-hero.team-real-hero,
    .page-hero.real-hero .hero-cover-inner,
    .page-hero.team-real-hero .hero-cover-inner {
        min-height: 480px;
    }

    .page-hero.real-hero {
        background-position: 58% top;
    }

    .page-hero.team-real-hero {
        background-position: center top;
    }
}

@media (max-width: 560px) {
    .image-viewer-modal {
        padding: 8px;
    }

    .image-viewer-dialog {
        width: calc(100vw - 12px);
        border-radius: 18px;
    }

    .branch-photo-hint {
        display: none;
    }
}

/* =========================================================
   FORMULARIOS CON ENVÍO SMTP
   ========================================================= */
.server-mail-form {
    position: relative;
}

.honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.field-help {
    display: block;
    color: #6b8296;
    font-size: .76rem;
    line-height: 1.45;
}

.form-alert {
    margin: 0 0 1.15rem;
    padding: .95rem 1rem;
    border-radius: 14px;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.55;
}

.form-alert.success {
    border: 1px solid #b8e5cb;
    background: #eaf8f0;
    color: #12643a;
}

.form-alert.error {
    border: 1px solid #f0c7c7;
    background: #fff1f1;
    color: #8f2f2f;
}

.server-mail-form input:invalid:not(:placeholder-shown),
.server-mail-form textarea:invalid:not(:placeholder-shown),
.server-mail-form select:invalid:not(:focus) {
    border-color: #dca7a7;
}

.server-mail-form .btn[disabled] {
    cursor: wait;
    opacity: .72;
}

.server-mail-form .note {
    margin-bottom: 0;
}

/* =========================================================
   PRODUCTOS — SIMULADOR DE CRÉDITO
   ========================================================= */
.credit-simulator-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 8%, rgba(8,166,80,.09), transparent 27%),
        radial-gradient(circle at 95% 4%, rgba(14,110,168,.10), transparent 30%),
        linear-gradient(180deg,#fff 0%,#f3f8fb 100%);
}

.credit-simulator-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(6,37,68,.025) 1px, transparent 1px), linear-gradient(90deg,rgba(6,37,68,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom,rgba(0,0,0,.45),transparent 75%);
}

.credit-simulator-section > .container {
    position: relative;
    z-index: 1;
}

.simulator-heading {
    max-width: 860px;
}

.credit-simulator-shell {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr);
    gap: 1.5rem;
    align-items: stretch;
}

.simulator-form-panel,
.simulator-summary-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
}

.simulator-form-panel {
    padding: clamp(1.25rem,3vw,2rem);
}

.simulator-summary-panel {
    padding: clamp(1.25rem,3vw,2rem);
    background:
        linear-gradient(150deg,rgba(255,255,255,.98),rgba(244,250,247,.98));
}

.simulator-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.simulator-panel-head strong {
    display: block;
    margin: .1rem 0 .35rem;
    color: var(--navy);
    font-size: 1.28rem;
    line-height: 1.25;
}

.simulator-panel-head p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.6;
}

.simulator-step {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg,var(--blue),var(--teal));
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(14,110,168,.18);
}

.simulator-step.alt {
    background: linear-gradient(135deg,var(--green),var(--teal));
}

.simulator-form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
}

.simulator-form-grid .field.full {
    grid-column: 1 / -1;
}

.simulator-form-grid .field label {
    display: block;
    margin: 0 0 .5rem;
    color: var(--navy);
    font-size: .88rem;
    font-weight: 900;
}

.simulator-form-grid input,
.simulator-form-grid select {
    width: 100%;
    min-height: 54px;
    padding: .8rem 1rem;
    border: 1px solid #cbdce7;
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: var(--ink);
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.simulator-form-grid input:focus,
.simulator-form-grid select:focus {
    border-color: rgba(14,110,168,.65);
    box-shadow: 0 0 0 4px rgba(14,110,168,.10);
}

.rate-input-wrap {
    position: relative;
}

.rate-input-wrap input {
    padding-right: 3.2rem;
}

.rate-input-wrap > span {
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #edf5f9;
    color: var(--blue);
    font-size: .83rem;
    font-weight: 900;
    pointer-events: none;
}

.simulator-calculate {
    margin-top: 1.2rem;
}

.simulator-disclaimer {
    margin: 1rem 0 0;
    color: #6e8295;
    font-size: .76rem;
    line-height: 1.55;
}

.simulator-empty {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: 2rem;
    border: 1px dashed #cfe1da;
    border-radius: 22px;
    background: rgba(245,250,247,.78);
    text-align: center;
}

.simulator-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: .5rem;
    border-radius: 22px;
    background: linear-gradient(135deg,#e3f4eb,#e5f1f8);
    color: var(--green);
    font-size: 2rem;
    font-weight: 900;
}

.simulator-empty strong {
    color: var(--navy);
    font-size: 1.18rem;
}

.simulator-empty span {
    max-width: 350px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}

.simulator-summary-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .85rem;
}

.simulator-summary-grid article {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .65rem;
    padding: 1rem;
    border: 1px solid #dbe8ef;
    border-radius: 18px;
    background: #fff;
}

.simulator-summary-grid article.highlight {
    border-color: #bfe9d5;
    background: linear-gradient(145deg,#eefaf4,#f5fbf8);
}

.simulator-summary-grid span {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
    line-height: 1.4;
}

.simulator-summary-grid strong {
    color: var(--navy);
    font-size: clamp(1.25rem,2.5vw,1.7rem);
    letter-spacing: -.03em;
}

.simulator-summary-grid article.highlight strong {
    color: #08794a;
}

.simulator-results {
    margin-top: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    scroll-margin-top: 120px;
}

.simulator-results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.6rem 1.8rem 1.35rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg,#fff,#f8fbfd);
}

.simulator-results-head .eyebrow {
    margin-bottom: .45rem;
}

.simulator-results-head h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.55rem,3vw,2.1rem);
    letter-spacing: -.035em;
}

.simulator-results-head > p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    text-align: right;
}

.simulator-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.simulator-table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
    font-size: .82rem;
}

.simulator-table th,
.simulator-table td {
    padding: .9rem .8rem;
    border-bottom: 1px solid #e2ebf0;
    text-align: right;
    white-space: nowrap;
}

.simulator-table th:first-child,
.simulator-table td:first-child,
.simulator-table th:nth-child(2),
.simulator-table td:nth-child(2) {
    text-align: left;
}

.simulator-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--navy);
    color: #fff;
    font-size: .73rem;
    letter-spacing: .02em;
}

.simulator-table tbody tr:nth-child(even) {
    background: #f8fbfd;
}

.simulator-table tbody tr:hover {
    background: #eff8f4;
}

.simulator-table tbody tr:last-child td {
    border-bottom: 0;
}

.simulator-method-note {
    padding: 1.25rem 1.8rem 1.5rem;
    border-top: 1px solid var(--line);
    background: #f7fbfd;
}

.simulator-method-note strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--navy);
    font-size: .86rem;
}

.simulator-method-note p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .credit-simulator-shell {
        grid-template-columns: 1fr;
    }

    .simulator-empty {
        min-height: 240px;
    }
}

@media (max-width: 620px) {
    .simulator-form-panel,
    .simulator-summary-panel,
    .simulator-results {
        border-radius: 22px;
    }

    .simulator-form-grid,
    .simulator-summary-grid {
        grid-template-columns: 1fr;
    }

    .simulator-form-grid .field.full {
        grid-column: auto;
    }

    .simulator-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .simulator-results-head > p {
        text-align: left;
    }
}

/* =========================================================
   QUIÉNES SOMOS — MAYOR JERARQUÍA DE ETIQUETAS VERDES
   Segunda ampliación para darles mayor presencia visual.
   ========================================================= */
.about-eyebrow {
    font-size: 1.15rem;
    line-height: 1.22;
    letter-spacing: .145em;
    margin-bottom: 1.10rem;
    font-weight: 800;
}

.page-hero .about-eyebrow {
    font-size: 1.18rem;
}

.mission-card .about-eyebrow,
.values-section .about-eyebrow {
    font-size: 1.12rem;
}

@media (max-width: 700px) {
    .about-eyebrow,
    .page-hero .about-eyebrow,
    .mission-card .about-eyebrow,
    .values-section .about-eyebrow {
        font-size: 1rem;
        letter-spacing: .13em;
    }
}

/* =========================================================
   QUIÉNES SOMOS — AJUSTE FINAL DE JERARQUÍA
   Incremento leve adicional solicitado para mayor impacto.
   ========================================================= */
.about-eyebrow {
    font-size: 1.28rem;
    line-height: 1.20;
    letter-spacing: .14em;
    font-weight: 800;
}

.page-hero .about-eyebrow {
    font-size: 1.32rem;
}

.mission-card .about-eyebrow,
.values-section .about-eyebrow {
    font-size: 1.24rem;
}

@media (max-width: 700px) {
    .about-eyebrow,
    .page-hero .about-eyebrow,
    .mission-card .about-eyebrow,
    .values-section .about-eyebrow {
        font-size: 1.08rem;
        letter-spacing: .125em;
    }
}

/* =========================================================
   POLÍTICA DE PRIVACIDAD
   ========================================================= */
.privacy-page {
    background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.privacy-container {
    width: min(calc(100% - 40px), 1120px);
}

.privacy-heading {
    max-width: 900px;
    margin-bottom: 2.4rem;
}

.privacy-heading h1 {
    margin: .15rem 0 1rem;
    color: var(--navy);
    font-size: clamp(2.8rem, 5.5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.privacy-lead {
    max-width: 890px;
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.85;
}

.privacy-update {
    display: inline-flex;
    gap: .35rem;
    margin-top: 1.2rem;
    padding: .65rem .9rem;
    border-radius: 999px;
    background: #eaf6ef;
    color: #15693d;
    font-size: .88rem;
}

.privacy-policy {
    display: grid;
    gap: 1rem;
}

.privacy-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1.25rem;
    padding: 1.65rem 1.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(6, 37, 68, .055);
}

.privacy-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #fff;
    font-weight: 900;
    font-size: .88rem;
}

.privacy-card h2 {
    margin: .15rem 0 .7rem;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.25;
}

.privacy-card p,
.privacy-card li {
    color: var(--muted);
    line-height: 1.8;
}

.privacy-card p {
    margin: .45rem 0 .85rem;
}

.privacy-card ul {
    margin: .65rem 0 1rem;
    padding-left: 1.25rem;
}

.privacy-card li {
    margin-bottom: .45rem;
}

.privacy-card strong {
    color: var(--navy);
}

.privacy-contact-card {
    background: linear-gradient(135deg, #f7fbfd, #eff9f4);
    border-color: #cfe7da;
}

.privacy-email {
    display: inline-flex;
    margin: .35rem 0 .7rem;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.privacy-email:hover {
    text-decoration: underline;
}

.privacy-small {
    font-size: .92rem;
}

.footer-credit {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 700px) {
    .privacy-container {
        width: min(calc(100% - 28px), 1120px);
    }

    .privacy-card {
        grid-template-columns: 1fr;
        padding: 1.35rem;
    }

    .privacy-number {
        width: 46px;
        height: 46px;
    }

    .privacy-lead {
        font-size: 1.02rem;
    }

    .footer-credit {
        display: block;
        margin-top: .4rem;
    }
}
