/* ===============================
   EXPRESSION COFFEE - BLOG POST PAGE STYLES
   Tipografía mejorada con Outfit para mejor presencia visual
   VERSIÓN CON LETRAS MÁS GRANDES PARA MEJOR LEGIBILIDAD
   =============================== */

/* Importar fuente Outfit desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/* ===============================
   RESET Y BASE
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===============================
   SECTION 1: HERO
   Background: Image with overlay
   =============================== */
.exp-post-hero {
    background-image: url('/images/CafeRegadoRojo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 20px 80px 20px;
    text-align: center;
}

/* Overlay oscuro para mejor legibilidad del texto */
.exp-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.exp-post-hero__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.exp-post-hero__category {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;  /* AUMENTADO de 14px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
}

.exp-post-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;  /* AUMENTADO de 60px */
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.exp-post-hero__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.exp-post-hero__author-avatar {
    width: 56px;  /* AUMENTADO de 48px */
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.exp-post-hero__author-avatar svg {
    width: 100%;
    height: 100%;
}

.exp-post-hero__author-info {
    text-align: center;
}

.exp-post-hero__author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.exp-post-hero__meta {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;  /* AUMENTADO de 14px */
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: 400;
}

.exp-post-hero__meta-divider {
    opacity: 0.5;
}

/* ===============================
   SECTION 2: CONTENT
   Color: Verde oscuro (#0f3d3e o similar)
   =============================== */
.exp-post-content {
    background: #0f3d3e;
    padding: 0 20px 80px 20px;
}

.exp-post-content__container {
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.exp-post-breadcrumb {
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 40px;
    font-size: 16px;  /* AUMENTADO de 14px */
    justify-content: flex-start;
    font-weight: 400;
}

.exp-post-breadcrumb__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.exp-post-breadcrumb__link:hover {
    color: #ffffff;
}

.exp-post-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Social Share */
.exp-post-share {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: flex-end;
}

.exp-post-share__btn {
    width: 44px;  /* AUMENTADO de 40px */
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.exp-post-share__btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Article Content */
.exp-post-article {
    margin-bottom: 60px;
}

.exp-post-section {
    margin-bottom: 40px;
}

.exp-post-section__title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;  /* AUMENTADO de 40px */
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px 0;
    text-align: left;
    letter-spacing: -0.01em;
}

.exp-post-section__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;  /* AUMENTADO de 26px */
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: left;
}

.exp-post-section__text {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;  /* AUMENTADO de 17px */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    text-align: left;
    font-weight: 400;
}

.exp-post-section__text:last-child {
    margin-bottom: 0;
}

/* Image */
.exp-post-image {
    margin: 48px 0;
}

.exp-post-image__img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}

.exp-post-image__placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #d1d5db;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.exp-post-image__caption {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;  /* AUMENTADO de 14px */
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    font-style: italic;
    font-weight: 400;
}

/* Quote */
.exp-post-quote {
    margin: 40px 0;
    padding: 24px 0 24px 32px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.exp-post-quote__mark {
    position: absolute;
    left: -12px;
    top: 0;
    font-size: 84px;  /* AUMENTADO de 72px */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.exp-post-quote__text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;  /* AUMENTADO de 19px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

/* Share Bottom */
.exp-post-share-bottom {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.exp-post-share-bottom__title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;  /* AUMENTADO de 19px */
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.exp-post-share-bottom__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.exp-post-share-bottom__btn {
    width: 54px;  /* AUMENTADO de 48px */
    height: 54px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.exp-post-share-bottom__btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Tags */
.exp-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.exp-post-tags__item {
    font-family: 'Outfit', sans-serif;
    padding: 8px 18px;  /* AUMENTADO padding horizontal */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 16px;  /* AUMENTADO de 14px */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Author Bio */
.exp-post-author-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.exp-post-author-bio__avatar {
    width: 96px;  /* AUMENTADO de 80px */
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.exp-post-author-bio__avatar svg {
    width: 100%;
    height: 100%;
}

.exp-post-author-bio__info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-post-author-bio__name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;  /* AUMENTADO de 19px */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.exp-post-author-bio__title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;  /* AUMENTADO de 15px */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ===============================
   SECTION 3: VOICES HEARD
   Color: Blanco (#ffffff)
   =============================== */
.exp-post-voices {
    background: #ffffff;
    padding: 80px 20px;
}

.exp-post-voices__title {
    font-family: 'Outfit', sans-serif;
    font-size: 62px;  /* AUMENTADO de 52px */
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin: 0 0 12px 0;
    text-align: left;
    letter-spacing: -0.01em;
}

.exp-post-voices__subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;  /* AUMENTADO de 16px */
    color: #666;
    margin: 0 0 48px 0;
    text-align: left;
    font-weight: 400;
}

.exp-post-voices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Testimonial Card */
.exp-post-testimonial {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exp-post-testimonial__stars {
    display: flex;
    gap: 4px;
    color: #111;
}

.exp-post-testimonial__quote {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;  /* AUMENTADO de 19px */
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 0;
}

.exp-post-testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.exp-post-testimonial__avatar {
    width: 48px;  /* AUMENTADO de 40px */
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.exp-post-testimonial__avatar svg {
    width: 100%;
    height: 100%;
}

.exp-post-testimonial__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.exp-post-testimonial__name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;  /* AUMENTADO de 15px */
    font-weight: 700;
    color: #111;
    margin: 0;
}

.exp-post-testimonial__title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;  /* AUMENTADO de 14px */
    color: #666;
    margin: 0;
    font-weight: 400;
}

.exp-post-testimonial__logo {
    margin-top: 8px;
}

/* ===============================
   SECTION 4: CTA
   Color: Gris claro (#d8d9d9)
   =============================== */
.exp-post-cta {
    background: #d8d9d9;
    padding: 100px 20px;
}

.exp-post-cta__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.exp-post-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;  /* AUMENTADO de 60px */
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.exp-post-cta__text {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;  /* AUMENTADO de 17px */
    line-height: 1.6;
    color: #555;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.exp-post-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.exp-post-cta__btn {
    font-family: 'Outfit', sans-serif;
    padding: 16px 36px;  /* AUMENTADO padding */
    font-size: 18px;  /* AUMENTADO de 16px */
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.exp-post-cta__btn--primary {
    background: linear-gradient(90deg, #0f766e, #a16207);
    color: #ffffff;
    border: none;
}

.exp-post-cta__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.exp-post-cta__btn--secondary {
    background: transparent;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.exp-post-cta__btn--secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* ===============================
   UTILIDADES
   =============================== */
.exp-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===============================
   RESPONSIVE - HERO
   =============================== */
@media (max-width: 768px) {
    .exp-post-hero {
        padding: 100px 24px 60px 24px;
    }

    .exp-post-hero__title {
        font-size: 54px;  /* AUMENTADO de 46px */
    }
}

@media (max-width: 640px) {
    .exp-post-hero {
        padding: 80px 20px 50px 20px;
    }

    .exp-post-hero__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }

    .exp-post-hero__author {
        flex-direction: column;
        text-align: center;
    }

    .exp-post-hero__author-info {
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE - CONTENT
   =============================== */
@media (max-width: 768px) {
    .exp-post-content {
        padding: 0 24px 60px 24px;
    }

    .exp-post-section__title {
        font-size: 42px;  /* AUMENTADO de 36px */
    }

    .exp-post-section__heading {
        font-size: 28px;  /* AUMENTADO de 24px */
    }

    .exp-post-quote__text {
        font-size: 20px;  /* AUMENTADO de 17px */
    }
}

@media (max-width: 640px) {
    .exp-post-content {
        padding: 0 20px 50px 20px;
    }

    .exp-post-section__title {
        font-size: 38px;  /* AUMENTADO de 32px */
    }

    .exp-post-section__heading {
        font-size: 26px;  /* AUMENTADO de 22px */
    }

    .exp-post-share {
        flex-wrap: wrap;
    }

    .exp-post-share-bottom__buttons {
        flex-wrap: wrap;
    }

    .exp-post-author-bio {
        flex-direction: column;
        text-align: center;
    }
}

/* ===============================
   RESPONSIVE - VOICES HEARD
   =============================== */
@media (max-width: 1024px) {
    .exp-post-voices__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .exp-post-voices {
        padding: 60px 24px;
    }

    .exp-post-voices__title {
        font-size: 50px;  /* AUMENTADO de 42px */
    }
}

@media (max-width: 640px) {
    .exp-post-voices__title {
        font-size: 42px;  /* AUMENTADO de 36px */
    }
}

/* ===============================
   RESPONSIVE - CTA
   =============================== */
@media (max-width: 768px) {
    .exp-post-cta {
        padding: 80px 24px;
    }

    .exp-post-cta__title {
        font-size: 54px;  /* AUMENTADO de 46px */
    }

    .exp-post-cta__buttons {
        flex-direction: column;
    }

    .exp-post-cta__btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .exp-post-cta {
        padding: 60px 20px;
    }

    .exp-post-cta__title {
        font-size: 48px;  /* AUMENTADO de 40px */
    }
}
