/* =========================================
   ESTILOS DE LA PÁGINA DE INICIO (INDEX)
   ========================================= */

/* --- Hero Section --- */
.hero-section {
    height: 60vh; /* Altura del banner */
    background-size: cover;
    background-position: center;
    border-radius: var(--br-radius);
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 4rem;
    position: relative;
}

/* Capa oscura sobre el hero (opcional para legibilidad) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: var(--br-radius);
}

.hero-content {
    color: white;
    max-width: 500px;
    z-index: 10;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* --- Categorías Section --- */
.categories-section {
    margin-bottom: 4rem;
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: white;
    border: 1px solid var(--clr-border);
    padding: 0.6rem 1.2rem;
    border-radius: var(--br-radius-round);
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: rgba(191, 67, 4, 0.05);
    border-color: var(--clr-primary);
}

.filter-btn.active {
    background-color: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}


/* --- Popular Section --- */
.popular-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.see-all {
    color: var(--clr-primary);
    font-size: 0.9rem;
}

.see-all:hover {
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.product-type {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--clr-primary);
}


/* --- Offer Banner --- */
.offer-banner {
    background-color: var(--clr-primary);
    color: white;
    border-radius: var(--br-radius);
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.offer-banner h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.offer-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* --- About Section --- */
.about-section {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-img img {
    border-radius: var(--br-radius);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}
/* =========================================
   ESTILOS DE LA PÁGINA DE PRODUCTOS (PRODUCTOS.HTML)
   ========================================= */

/* Contenedor principal en Grid para PC: Filtros a la izq, Catálogo a la der */
.products-page-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

/* --- Barra Lateral de Filtros --- */
.sidebar-filters {
    background-color: white;
    padding: 1.8rem;
    border-radius: var(--br-radius);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 110px; /* Se queda fijo al hacer scroll */
}

.filter-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

/* Buscador */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 0.8rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-radius);
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    right: 12px;
    color: #999;
}

/* Lista de Checkbox */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-checkbox-list input[type="checkbox"] {
    accent-color: var(--clr-primary); /* Color personalizado para el check */
    width: 16px;
    height: 16px;
}

/* Rango de Precios */
.price-range input[type="range"] {
    width: 100%;
    accent-color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
}

/* Select de Ordenamiento */
.filter-select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-radius);
    background-color: white;
    font-size: 0.9rem;
    cursor: pointer;
}


/* --- Cuadrícula de Catálogo --- */
.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columnas perfectas para PC */
    gap: 2rem;
}

/* Contenedor de imagen para posicionar el corazón */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Botón de Favorito */
.fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: white;
    color: #666;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-size: 1.1rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.fav-btn:hover {
    transform: scale(1.15); /* Animación leve */
    color: var(--clr-accent-red);
}

.fav-btn.faved {
    color: var(--clr-accent-red);
}
/* =========================================
   ESTILOS DE LA PÁGINA DE EVENTOS (EVENTOS.HTML)
   ========================================= */

/* --- Evento Destacado (Horizontal para PC) --- */
.featured-event {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Imagen más ancha que el texto */
    background-color: white;
    border-radius: var(--br-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 4rem;
}

.featured-event-img {
    position: relative;
    height: 100%;
    min-height: 380px;
}

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

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--clr-primary);
    color: white;
    padding: 0.4rem 1rem;
    font-weight: bold;
    border-radius: var(--br-radius-round);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-event-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-meta i {
    color: var(--clr-primary);
    margin-right: 5px;
}

.featured-event-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.featured-event-info p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.featured-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--clr-border);
    padding-top: 1.5rem;
}

.event-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--clr-primary);
    font-family: var(--font-main);
}

.event-price small {
    font-size: 0.8rem;
    color: #666;
    font-family: var(--font-secondary);
    font-weight: normal;
}


/* --- Cuadrícula de Próximos Eventos (3 Columnas) --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.event-card {
    display: flex;
    flex-direction: column;
}

.event-img-wrapper {
    position: relative;
    height: 200px;
}

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

/* Etiqueta flotante estilo calendario para la fecha */
.event-date-tag {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: white;
    color: var(--clr-text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    width: 55px;
    height: 55px;
    border-radius: var(--br-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.1;
    font-weight: 500;
}

.event-date-tag b {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: var(--clr-primary);
}

.event-card-content {
    padding: 2rem 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.8rem;
}

.event-card-meta i {
    color: var(--clr-primary);
}

.event-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.event-card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-card-price {
    font-weight: bold;
    color: var(--clr-primary);
    font-size: 1.1rem;
}
/* =========================================
   ESTILOS DE LA PÁGINA DE CONTACTO (CONTACTO.HTML)
   ========================================= */

/* Grid principal de 2 columnas para PC */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

/* --- Columna Izquierda: Tarjetas e Info --- */
.info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: white;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(191, 67, 4, 0.1); /* Fondo naranja muy sutil */
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.info-text p {
    font-size: 0.95rem;
    color: #555;
}

/* Bloque del Mapa */
.map-wrapper {
    height: 250px;
    background-color: #E5E4E2;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    gap: 10px;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--clr-primary);
}


/* --- Columna Derecha: Formulario --- */
.contact-form-column {
    background-color: white;
    padding: 3rem;
}

.contact-form-column h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--clr-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Doble columna para Nombre y Correo en PC */
.form-group-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-control label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.form-control input,
.form-control textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--br-radius);
    font-size: 0.95rem;
    background-color: #FAFAFA;
    transition: all 0.3s ease; /* Animación leve para el focus */
}

/* Animación leve: al hacer clic cambia el borde y el fondo */
.form-control input:focus,
.form-control textarea:focus {
    border-color: var(--clr-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(191, 67, 4, 0.1);
}

.form-control textarea {
    resize: none; /* Evita que el usuario deforme el diseño */
}
/* =========================================
   ESTILOS DEL PERFIL (PERFIL.HTML)
   ========================================= */

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    margin-bottom: 2rem;
    background-color: white;
}

.user-info-main {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.user-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--clr-primary);
}

.user-text-main h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.edit-profile-btn {
    background: none;
    font-size: 1.5rem;
    color: var(--clr-primary);
}

/* Tabs */
.profile-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: white;
    border-radius: var(--br-radius);
    font-weight: 500;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active {
    background-color: var(--clr-primary);
    color: white;
}

/* Visibilidad de secciones */
.profile-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.profile-section.active {
    display: block;
}

/* Formularios del perfil */
.content-block {
    padding: 2.5rem;
}

.content-block h3 {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Pedidos */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    padding: 2rem;
    align-items: center;
    background-color: white;
}

.order-id { font-weight: bold; font-size: 1.1rem; }
.order-total { font-weight: bold; color: var(--clr-primary); font-size: 1.2rem; margin-top: 5px;}

.status-pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-pill.delivered { background-color: #E8F5E9; color: var(--clr-accent-green); }
.status-pill.shipping { background-color: #FFF3E0; color: var(--clr-primary); }

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Favoritos Vacíos */
.empty-favorites {
    text-align: center;
    padding: 5rem;
    color: #999;
}

.empty-favorites i { font-size: 5rem; margin-bottom: 1rem; opacity: 0.3; }

/* Switches de Configuración */
.settings-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--clr-border);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px; width: 18px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider { background-color: var(--clr-primary); }
input:checked + .slider:before { transform: translateX(24px); }
/* =========================================
   ESTILOS DE LA PÁGINA DE PAGO (PAGO.HTML)
   ========================================= */

.checkout-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

.checkout-block {
    padding: 2.5rem;
}

.checkout-block h3 {
    margin-bottom: 1.8rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 0.8rem;
    font-size: 1.3rem;
}

.checkout-block h3 i {
    color: var(--clr-primary);
    margin-right: 8px;
}

/* Opciones de Método de Pago */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none; /* Esconde el círculo feo por defecto */
}

.option-content {
    border: 2px solid var(--clr-border);
    border-radius: var(--br-radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.option-content i {
    font-size: 1.8rem;
    color: #666;
}

/* Cuando seleccionas un método de pago, se ilumina de naranja */
.payment-option input[type="radio"]:checked + .option-content {
    border-color: var(--clr-primary);
    background-color: rgba(191, 67, 4, 0.03);
}

.payment-option input[type="radio"]:checked + .option-content i {
    color: var(--clr-primary);
}

.card-fields-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeIn 0.3s ease;
}

/* Columna Derecha del Resumen */
.checkout-summary-column {
    background-color: white;
    padding: 2.5rem;
    position: sticky;
    top: 110px;
}

.checkout-summary-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.checkout-products-list {
    max-height: 240px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 5px;
}

/* Mini renglones de productos en el resumen */
.checkout-prod-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--clr-border);
    padding-bottom: 0.5rem;
}

.checkout-totals {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    color: #555;
}

.totals-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--clr-primary);
    font-family: var(--font-main);
}
/* =========================================
   MODAL DE DETALLE DE PRODUCTO (AMAZON STYLE)
   ========================================= */
.prod-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 3000;
    display: none; /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.prod-modal {
    background-color: white;
    width: 900px; /* Tamaño ideal para PC */
    max-height: 85vh;
    border-radius: var(--br-radius);
    padding: 2.5rem;
    position: relative;
    overflow-y: auto;
}

.close-prod-modal {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    color: #666;
}

/* Distribución tipo Amazon de 2 columnas */
.prod-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 1rem;
}

.prod-modal-left img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: var(--br-radius);
    background-color: #FAFAFA;
    padding: 1rem;
}

.prod-modal-right {
    display: flex;
    flex-direction: column;
}

.prod-modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.prod-modal-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.prod-modal-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}

.prod-modal-description h4,
.prod-modal-specs h4 {
    font-family: var(--font-main);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 5px;
}

.prod-modal-description p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Tabla de Especificaciones Técnicas */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.specs-table tr {
    border-bottom: 1px solid #F0F0F0;
}

.specs-table td {
    padding: 8px 0;
}

.specs-table td:first-child {
    font-weight: bold;
    color: #666;
    width: 40%;
}

.prod-modal-actions {
    margin-top: auto; /* Empuja los botones al fondo */
    display: flex;
    gap: 1rem;
}
/* =========================================
   ESTILOS DE LA PÁGINA NOSOTROS (NOSOTROS.HTML)
   ========================================= */

.founders-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Imagen fija e info con más espacio */
    background-color: white;
    overflow: hidden;
}

/* Invierte las columnas para la tarjeta de Enrique */
.founder-card.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.founder-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.founder-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
}

.founder-role {
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-info p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* --- Sección Juntos (Historia de Origen) --- */
.story-together-section {
    background-color: white;
    padding: 3.5rem;
    margin-bottom: 5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.story-img img {
    width: 100%;
    border-radius: var(--br-radius);
    box-shadow: var(--shadow-card);
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
    font-family: var(--font-main);
}

.story-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-content p:last-child {
    margin-bottom: 0;
}