.pg_excerpts_index{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.pg_excerpts_index .sign-in,
.pg_excerpts_article .sign-in {
    display: none;
}
/* Page Header - Literario */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
}

/* Excerpts Grid - Estilo literario */
.excerpts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 5rem;
}

.excerpts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.excerpt-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.excerpt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 159, 184, 0.12);
    border-color: #e8e4df;
}

.author-photo-wrapper {
    margin-bottom: 1.5rem;
}

.author-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0ede8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.excerpt-card:hover .author-photo {
    border-color: #4a9fb8;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.excerpt-card-content {
    text-align: center;
}

.excerpt-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    line-height: 1.4;
    font-style: italic;
}

.excerpt-card:hover .excerpt-title {
    color: #4a9fb8;
}

.author-name {
    font-size: 0.95rem;
    color: #8895a7;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Decorative Quote */
.decorative-quote {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    position: relative;
}

.decorative-quote::before {
    content: '"';
    font-family: 'Lora', Georgia, serif;
    font-size: 6rem;
    color: #37424d;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.decorative-quote p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    color: #5a6c7d;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.decorative-quote-author {
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #8895a7;
    font-style: normal;
}

/* Excerpt Header */
.excerpt-header {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.author-photo-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid #f0ede8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    filter: grayscale(15%);
}

.author-name-small {
    font-size: 1rem;
    color: #8895a7;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.excerpt-title-large {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Excerpt Content */
.excerpt-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.excerpt-content p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a4a5c;
    margin-bottom: 1.5rem;
}

.excerpt-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.15rem 0 0;
    color: #4a9fb8;
    font-weight: 600;
}

.excerpt-content em {
    font-style: italic;
    color: #2c3e50;
}

.excerpt-content strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Source Attribution */
.source-attribution {
    max-width: 750px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 3px solid #4a9fb8;
    border-radius: 6px;
}

.source-attribution p {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

.source-attribution strong {
    color: #2c3e50;
}

/* Share Section */
.share-section {
    max-width: 750px;
    margin: 3rem auto 4rem;
    padding: 0 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #5791917a;
}

.share-label {
    font-weight: 600;
    color: #5a6c7d;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f3f5;
    color: #5a6c7d;
    text-decoration: none;
    transition: all 0.2s;
}
.share-button.copied {
    background: #e0f7fa;
    color: #00796b;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.share-button.copied::after {
    content: '✓';
    margin-left: 6px;
    color: #388e3c;
    font-weight: bold;
    font-size: 1.1em;
}

.share-button:hover {
    background: #4a9fb8;
    color: white;
}

/* Related Excerpts */
.related-excerpts {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.related-excerpts h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    border: 1px solid #f0ede8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 159, 184, 0.12);
}

.related-card .author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #f0ede8;
    filter: grayscale(20%);
}

.related-card:hover .author-photo {
    border-color: #4a9fb8;
    filter: grayscale(0%);
}

.related-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-align: center;
    font-style: italic;
    color: #2c3e50;
}

.related-card:hover .related-card-title {
    color: #4a9fb8;
}

.related-card-author {
    font-size: 0.9rem;
    color: #8895a7;
}
/* CTA Section - Adaptado */
.integrated-cta {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 750px;
    margin: 0 auto 6rem;
    width: 100%;
}
.is_noplan .integrated-cta {
    padding: 0;
}
.is_pro .integrated-cta,
.is_premium .integrated-cta{
    display: none;
}
.is_noplan .integrated-cta .cta-status {
    padding: 2rem 1rem;
    margin: 1rem;
}

.integrated-cta h3 {
    max-width: 440px;
}
.integrated-cta p {
    max-width: 533px;
}

@media (max-width: 1024px) {
    .excerpts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 2rem 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }


    .excerpts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .integrated-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .decorative-quote {
        margin: 3rem auto;
        padding: 2rem 1rem;
    }

    .decorative-quote p {
        font-size: 1.2rem;
    }
    .excerpt-title-large {
        font-size: 2rem;
    }

    .author-photo-large {
        width: 140px;
        height: 140px;
    }

    .excerpt-content {
        padding: 2rem 1.5rem;
    }
    .excerpt-content p {
        font-size: 1.1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .share-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .excerpt-content {
        padding: 1.5rem 1rem;
    }
    .related-excerpts,
    .integrated-cta {
        padding: 0 0.5rem;
    }
    .integrated-cta-box {
        padding: 2.5rem 0.5rem;
    }
}