/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Font Classes */
.libre-baskerville-regular {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}

.cinzel-medium {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.cinzel-semibold {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.inter-light {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-medium {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #d6d3d1;
    background-color: #1c1917;
    padding-top: 4rem; /* Espacio para la navegación fija */
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0c0a09;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    color: #fef3c7;
}

.nav-menu {
    display: none;
}

.nav-links {
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.nav-link {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #d6d3d1;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link-active {
    color: #fbbf24;
}

@media (min-width: 768px) {
    .nav-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1c1917 0%, rgba(120, 53, 15, 0.3) 50%, #1c1917 100%);
    padding: 5rem 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    order: 2;
}

.hero-image {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    order: 1;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 3rem;
    color: #fef3c7;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 1.25rem;
    color: rgba(254, 243, 199, 0.8);
}

.hero-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #f59e0b, #fbbf24);
    margin-bottom: 1rem;
}

.hero-description {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    color: #d6d3d1;
    line-height: 1.7;
    max-width: 32rem;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(180, 83, 9, 0.3);
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    display: block;
}

@media (min-width: 768px) {
    .image-container {
        width: 280px;
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .image-container {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1280px) {
    .image-container {
        width: 380px;
        height: 380px;
    }
}

@media (min-width: 1536px) {
    .image-container {
        width: 420px;
        height: 420px;
    }
}

/* Buttons */
.btn {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #b45309;
    color: white;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-outline {
    background-color: transparent;
    color: #fef3c7;
    border: 1px solid #b45309;
}

.btn-outline:hover {
    background-color: rgba(180, 83, 9, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.stat-number {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    color: #fbbf24;
    line-height: 1;
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: rgba(41, 37, 36, 0.5);
}

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

.section-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    color: #fef3c7;
    margin-bottom: 1rem;
}

.section-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: #d97706;
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #d6d3d1;
    line-height: 1.7;
}

.about-text p {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}

.card {
    background-color: rgba(12, 10, 9, 0.8);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    color: #fef3c7;
    line-height: 1.7;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: #b45309;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-text {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: white;
    font-size: 1.125rem;
}

.author-name {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #fde68a;
}

.author-work {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #a8a29e;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Works Section */
.works {
    padding: 5rem 0;
    background-color: #1c1917;
}

.works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-center {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5rem;
    color: #fef3c7;
    margin-bottom: 1rem;
}

.section-divider-center {
    width: 4rem;
    height: 0.25rem;
    background-color: #d97706;
    margin: 0 auto;
}

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

.book-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.5s ease;
    aspect-ratio: 3/4;
    max-width: 100%;
}

.book-container:hover {
    transform: scale(1.05);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.8), transparent, transparent);
    border-radius: 0.5rem;
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.book-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.875rem;
    color: #fef3c7;
}

.book-subtitle {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
    color: rgba(254, 243, 199, 0.8);
    font-size: 1.125rem;
}

.book-divider {
    width: 3rem;
    height: 0.25rem;
    background-color: #d97706;
}

.book-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #d6d3d1;
    line-height: 1.7;
}

.book-description p {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}

.highlight {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
    color: #fde68a;
}

.book-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .works-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .book-buttons {
        flex-direction: row;
    }
    
    .book-container {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: rgba(41, 37, 36, 0.5);
    text-align: center;
}

.contact-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.decorative-lily {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.7;
    z-index: 1;
    filter: blur(0.5px);
}

.decorative-lily.left {
    left: -20px;
}

.decorative-lily.right {
    right: -20px;
    transform: translateY(-50%) scaleX(-1);
}

@media (min-width: 768px) {
    .decorative-lily {
        top: 50%;
        width: 150px;
        height: 150px;
        opacity: 0.8;
    }
    
    .decorative-lily.left {
        left: -25px;
    }
    
    .decorative-lily.right {
        right: -25px;
    }
}

@media (min-width: 1024px) {
    .decorative-lily {
        width: 180px;
        height: 180px;
        opacity: 0.9;
    }
    
    .decorative-lily.left {
        left: -30px;
    }
    
    .decorative-lily.right {
        right: -30px;
    }
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-description {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    color: #d6d3d1;
    max-width: 42rem;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    background-color: #0c0a09;
    color: #fef3c7;
    padding: 1rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #b45309;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.newsletter {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 480px) {
    .newsletter {
        max-width: 28rem;
        padding: 0;
    }
}

.newsletter-card {
    background-color: rgba(12, 10, 9, 0.8);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    color: #fef3c7;
}

.newsletter-description {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #d6d3d1;
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    flex: 1;
    padding: 0.5rem 0.75rem;
    background-color: #292524;
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 0.375rem;
    color: #fef3c7;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: #a8a29e;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d97706;
}

.newsletter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 639px) {
    .newsletter-btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #1c1917;
    border-top: 1px solid rgba(217, 119, 6, 0.2);
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.5rem;
    color: #fef3c7;
}

.footer-copyright {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #a8a29e;
}

.footer-quote {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
    color: #78716c;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons,
    .book-buttons {
        flex-direction: row;
    }
    
    .newsletter-form {
        flex-direction: row;
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .contact-container {
        padding: 0 2rem;
    }
}
/* Flolan */
.flolan {
  color: transparent;
  background-clip: text;
  font-family: "libre-baskerville-regular";
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, rgba(59, 130, 246, 0.7), rgba(236, 72, 153, 0.7), rgba(147, 51, 234, 0.7)); /* Degradado a mano */
}

a .flolan {
  text-decoration: none;
}

a:hover .flolan {
  text-decoration: none;
}

a[href*="flolan.net.ar"] {
  text-decoration: none !important;
}

a[href*="flolan.net.ar"]:hover {
  text-decoration: none !important;
}
/* Book extras */

.categories {
    padding: 4rem 0;
    background-color: rgba(41, 37, 36, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: rgba(12, 10, 9, 0.6);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.category-card:hover {
    border-color: rgba(217, 119, 6, 0.4);
}

.category-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    color: #fef3c7;
    margin-bottom: 0.5rem;
}

.category-description {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    color: #d6d3d1;
    margin-bottom: 1rem;
}

.category-count {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #b45309;
    font-size: 0.875rem;
}

/* Articles Section */
.featured-articles {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: rgba(12, 10, 9, 0.6);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.article-content {
    padding: 1.5rem;
}

.article-meta {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #a8a29e;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.article-title {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    color: #fef3c7;
    margin-bottom: 1rem;
}

.article-excerpt {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    color: #d6d3d1;
    margin-bottom: 1rem;
}

.read-more {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #fbbf24;
    text-decoration: none;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: rgba(180, 83, 9, 0.2);
    color: #fde68a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.75rem;
}

/* Blog Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    color: #fbbf24;
}

.stat-label {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.875rem;
    color: #a8a29e;
}

.badge-text {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
    background-color: rgba(180, 83, 9, 0.2);
    color: #fde68a;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Responsive para blog */
/* Mobile Responsive for Hero Section */
@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-header {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }
    
    .image-container {
        width: 220px;
        height: 220px;
    }
    
    .hero-divider {
        width: 4rem;
        height: 0.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.625rem 1.5rem;
    }
    
    .section-title,
    .section-title-center {
        font-size: 2rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-header {
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-divider {
        width: 5rem;
        height: 0.225rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-buttons {
        gap: 0.875rem;
    }
    
    .section-title,
    .section-title-center {
        font-size: 2.125rem;
    }
    
    .footer-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.blog-hero {
    background: 
        radial-gradient(ellipse at center, rgba(120, 53, 15, 0.2) 0%, rgba(28, 25, 23, 0.4) 60%, rgba(28, 25, 23, 0.85) 90%),
        linear-gradient(to bottom, rgba(28, 25, 23, 0.3) 0%, transparent 40%, transparent 60%, rgba(28, 25, 23, 0.6) 100%),
        url('../images/fondo.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    width: 100%;
    padding: 4rem 0;
}

.blog-hero-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.blog-hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.blog-hero-header {
    margin-bottom: 2rem;
}

.blog-hero-title {
    text-align: center;
    margin: 0;
}

.blog-hero-description {
    margin: 0 auto 2rem auto;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.blog-hero-stat {
    text-align: center;
}

.blog-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.blog-hero-stat-label {
    display: block;
    font-size: 1rem;
}