/* ===== Manantial de Vida — Apple-style ===== */
:root {
    --azul: #0071e3;
    --azul-osc: #0058b0;
    --azul-claro: #2997ff;
    --azul-fondo: #f5f7fa;
    --azul-fondo-2: #fbfbfd;
    --texto: #1d1d1f;
    --texto-2: #6e6e73;
    --texto-3: #86868b;
    --borde: #d2d2d7;
    --borde-claro: #e8e8ed;
    --blanco: #ffffff;
    --sombra: 0 4px 24px rgba(0,0,0,0.06);
    --sombra-2: 0 12px 40px rgba(0,0,0,0.08);
    --radio: 18px;
    --radio-sm: 12px;
    --max: 1080px;
    --ease: cubic-bezier(0.28, 0.11, 0.32, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--texto);
    background: var(--blanco);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: -0.003em;
}

a { color: var(--azul); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--azul-osc); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.contenedor { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ===== Nav (Apple-style frosted) ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img { height: 34px; width: auto; }

.nav-brand-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--texto);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nav-brand-text .sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--texto-3);
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--texto);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 980px;
    text-decoration: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--texto); text-decoration: none; }
.nav-links a.activo { color: var(--azul); font-weight: 500; }

/* Hamburger — fixed */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
    position: relative;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    position: absolute;
    left: 4px;
    width: 22px;
    height: 1.5px;
    background: var(--texto);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 19px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--azul-fondo-2);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 22px 80px;
    color: white;
}

.hero-eyebrow {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.9;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.022em;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.92;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Apple buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 26px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--azul);
    color: white;
}
.btn-primary:hover { background: var(--azul-osc); color: white; text-decoration: none; transform: translateY(-1px); }

.btn-light {
    background: rgba(255,255,255,0.9);
    color: var(--texto);
}
.btn-light:hover { background: white; color: var(--texto); text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; text-decoration: none; }

.btn-outline {
    background: transparent;
    color: var(--azul);
    border: 1.5px solid var(--azul);
}
.btn-outline:hover { background: var(--azul); color: white; text-decoration: none; }

/* ===== Secciones generales ===== */
.seccion { padding: 90px 0; }
.seccion-gris { background: var(--azul-fondo-2); }

.seccion-head {
    text-align: center;
    margin-bottom: 56px;
}

.seccion-head h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.1;
    color: var(--texto);
}

.seccion-head p {
    font-size: 19px;
    font-weight: 400;
    color: var(--texto-2);
    margin-top: 12px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

/* ===== Versículo ===== */
.versiculo {
    padding: 64px 22px;
    text-align: center;
    background: var(--azul-fondo-2);
    border-top: 1px solid var(--borde-claro);
    border-bottom: 1px solid var(--borde-claro);
}

.versiculo blockquote {
    font-size: 28px;
    font-weight: 600;
    color: var(--texto);
    line-height: 1.35;
    letter-spacing: -0.015em;
    max-width: 680px;
    margin: 0 auto;
}

.versiculo cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: var(--azul);
    font-weight: 500;
}

/* ===== Tarjetas ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tarjeta {
    background: var(--blanco);
    border: 1px solid var(--borde-claro);
    border-radius: var(--radio);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}

.tarjeta:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra-2);
}

.tarjeta-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tarjeta-img-ph {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta-img-ph svg { width: 40px; height: 40px; color: var(--borde); }

.tarjeta-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--azul);
    background: rgba(0,113,227,0.08);
    padding: 4px 12px;
    border-radius: 980px;
    margin-bottom: 12px;
    align-self: flex-start;
    letter-spacing: 0.01em;
}

.tarjeta h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.tarjeta h3 a { color: var(--texto); text-decoration: none; }
.tarjeta h3 a:hover { color: var(--azul); text-decoration: none; }

.tarjeta .resumen {
    font-size: 15px;
    color: var(--texto-2);
    line-height: 1.5;
    flex: 1;
}

.tarjeta-foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--borde-claro);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--texto-3);
}

.tarjeta-foot .leer {
    color: var(--azul);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}
.tarjeta-foot .leer:hover { text-decoration: underline; }

/* ===== Nosotros ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.split-text p {
    font-size: 17px;
    color: var(--texto-2);
    line-height: 1.6;
    margin-bottom: 16px;
}

.split-text .accent-bar {
    width: 40px;
    height: 4px;
    background: var(--azul);
    border-radius: 4px;
    margin-bottom: 24px;
}

.lista-valores {
    list-style: none;
    margin-top: 28px;
}

.lista-valores li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--texto);
    font-weight: 400;
}

.lista-valores li .icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(0,113,227,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lista-valores li svg { width: 18px; height: 18px; color: var(--azul); }

.split-img {
    border-radius: var(--radio);
    overflow: hidden;
    box-shadow: var(--sombra-2);
    aspect-ratio: 4/3;
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Creencias / Features ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature {
    background: var(--blanco);
    border: 1px solid var(--borde-claro);
    border-radius: var(--radio);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature:hover { transform: translateY(-3px); box-shadow: var(--sombra); }

.feature .icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(0,113,227,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .icon-circle svg { width: 28px; height: 28px; color: var(--azul); }

.feature h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature p {
    font-size: 14px;
    color: var(--texto-2);
    line-height: 1.5;
}

/* ===== Eventos — tarjetas elegantes ===== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.evento-card {
    background: var(--blanco);
    border: 1px solid var(--borde-claro);
    border-radius: var(--radio);
    padding: 28px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.evento-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-2); }

.evento-card.pasado { opacity: 0.55; }

.evento-card .stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--azul);
}

.evento-card.pasado .stripe { background: var(--borde); }

.evento-date {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.evento-date .dia {
    font-size: 34px;
    font-weight: 700;
    color: var(--texto);
    letter-spacing: -0.03em;
    line-height: 1;
}

.evento-date .mes {
    font-size: 15px;
    font-weight: 600;
    color: var(--azul);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.evento-date .anio {
    font-size: 14px;
    color: var(--texto-3);
    font-weight: 400;
}

.evento-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}

.evento-card .desc {
    font-size: 15px;
    color: var(--texto-2);
    line-height: 1.5;
    margin-bottom: 16px;
}

.evento-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--texto-3);
}

.evento-card .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.evento-card .meta-item svg { width: 16px; height: 16px; color: var(--azul); }

.evento-badge-pasado {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--texto-3);
    background: var(--azul-fondo);
    padding: 3px 10px;
    border-radius: 980px;
    margin-top: 10px;
}

/* ===== Artículo individual ===== */
.articulo { padding: 60px 0 80px; }

.articulo-wrap { max-width: 720px; margin: 0 auto; }

.articulo .tag { margin-bottom: 20px; }

.articulo h1 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.articulo-meta {
    display: flex;
    gap: 16px;
    font-size: 15px;
    color: var(--texto-3);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--borde-claro);
}

.articulo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radio);
    margin-bottom: 36px;
}

.articulo-contenido {
    font-size: 18px;
    line-height: 1.7;
    color: var(--texto);
    letter-spacing: -0.003em;
}

.articulo-contenido p { margin-bottom: 20px; }
.articulo-contenido h2 { font-size: 26px; margin: 36px 0 14px; font-weight: 700; letter-spacing: -0.02em; }
.articulo-contenido h3 { font-size: 21px; margin: 28px 0 10px; font-weight: 600; }
.articulo-contenido blockquote {
    border-left: 4px solid var(--azul);
    padding: 20px 28px;
    margin: 28px 0;
    background: var(--azul-fondo-2);
    border-radius: 0 var(--radio-sm) var(--radio-sm) 0;
    font-size: 19px;
    font-weight: 500;
    color: var(--texto);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.volver {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 44px;
    font-size: 15px;
    font-weight: 500;
    color: var(--azul);
    text-decoration: none;
}
.volver:hover { text-decoration: underline; }
.volver svg { width: 16px; height: 16px; }

/* ===== Contacto ===== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contacto-info h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.018em;
    margin-bottom: 16px;
}

.contacto-info > p {
    font-size: 16px;
    color: var(--texto-2);
    line-height: 1.6;
    margin-bottom: 28px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contacto-item .icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(0,113,227,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-item svg { width: 20px; height: 20px; color: var(--azul); }

.contacto-item .label {
    font-size: 13px;
    color: var(--texto-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.contacto-item .valor {
    font-size: 16px;
    color: var(--texto);
    font-weight: 500;
}

.form-card {
    background: var(--blanco);
    border: 1px solid var(--borde-claro);
    border-radius: var(--radio);
    padding: 36px;
    box-shadow: var(--sombra);
}

.campo { margin-bottom: 18px; }

.campo label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--texto);
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--borde);
    border-radius: var(--radio-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--texto);
    background: var(--blanco);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    -webkit-appearance: none;
}

.campo input:focus,
.campo textarea:focus {
    outline: none;
    border-color: var(--azul);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.12);
}

.campo textarea { min-height: 120px; resize: vertical; }

.btn-full { width: 100%; padding: 14px; font-size: 16px; }

/* ===== Mensaje form ===== */
.msg {
    padding: 14px 18px;
    border-radius: var(--radio-sm);
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.msg-ok { background: #e8f8ed; color: #1a7a3a; border: 1px solid #c3e8d0; }
.msg-err { background: #fdeaea; color: #c0392b; border: 1px solid #f4c8c8; }

/* ===== Paginación ===== */
.paginacion {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.paginacion a,
.paginacion span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--borde-claro);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.2s var(--ease);
}

.paginacion a:hover { border-color: var(--azul); color: var(--azul); text-decoration: none; }
.paginacion .actual { background: var(--azul); color: white; border-color: var(--azul); }

/* ===== Footer ===== */
.footer {
    background: #f5f5f7;
    color: var(--texto-2);
    padding: 40px 0 28px;
    border-top: 1px solid var(--borde-claro);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-col p { font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.footer-col a { color: var(--texto-2); font-size: 14px; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--texto); text-decoration: none; }

.footer-col .logo-footer { height: 40px; margin-bottom: 14px; }

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--borde-claro);
    text-align: center;
    font-size: 13px;
    color: var(--texto-3);
}

/* ===== Page header ===== */
.page-head {
    background: var(--azul-fondo-2);
    padding: 56px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--borde-claro);
}

.page-head h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.022em;
    line-height: 1.1;
}

.page-head p {
    font-size: 17px;
    color: var(--texto-2);
    margin-top: 10px;
    font-weight: 400;
}

/* ===== 404 ===== */
.not-found {
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 22px;
}

.not-found .big {
    font-size: 80px;
    font-weight: 700;
    color: var(--azul);
    line-height: 1;
    letter-spacing: -0.04em;
}

.not-found h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.not-found p {
    font-size: 16px;
    color: var(--texto-2);
    margin-bottom: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .contacto-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hero h1 { font-size: 38px; }
    .seccion-head h2 { font-size: 32px; }
    .split-text h2 { font-size: 28px; }
    .articulo h1 { font-size: 30px; }
    .page-head h1 { font-size: 32px; }
    .versiculo blockquote { font-size: 22px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
        gap: 2px;
        z-index: 9998;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        width: 100%;
        padding: 14px 16px;
        font-size: 20px;
        font-weight: 500;
        border-radius: 12px;
        color: var(--texto);
    }

    .nav-links a:hover { background: var(--azul-fondo); }

    .nav-toggle { display: block; }

    .nav-brand-text { font-size: 14px; }
    .nav-brand-text .sub { font-size: 10px; }
    .nav-brand img { height: 30px; }

    .hero { min-height: 520px; }
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 17px; }
    .hero-content { padding: 80px 22px 60px; }

    .seccion { padding: 64px 0; }
    .seccion-head { margin-bottom: 40px; }
    .seccion-head h2 { font-size: 28px; }
    .seccion-head p { font-size: 17px; }

    .articulo h1 { font-size: 26px; }
    .split-text h2 { font-size: 24px; }
    .page-head { padding: 44px 0 36px; }
    .page-head h1 { font-size: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero-subtitle { font-size: 16px; }
    .contenedor { padding: 0 18px; }
    .versiculo blockquote { font-size: 19px; }
    .versiculo { padding: 48px 18px; }
    .seccion-head h2 { font-size: 25px; }
    .grid { grid-template-columns: 1fr; }
    .eventos-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
}