/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #d4a574;
}

.blog-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Categories Section */
.blog-categories {
    padding: 80px 0;
}

.blog-categories h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 50px;
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.category-icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
}

.category-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.category-info p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #d4a574;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-body h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #2c2c2c;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.article-author {
    font-weight: 600;
    color: #333;
}

.read-more {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c99563;
    transform: translateX(5px);
}

/* Category Footer */
.category-footer {
    text-align: center;
    padding-top: 20px;
}

/* Featured Articles Section */
.featured-articles {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.featured-articles h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.featured-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c2c2c;
    line-height: 1.4;
}

.featured-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.featured-article .btn {
    width: 100%;
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #d4a574;
}

.newsletter-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.newsletter-form .btn {
    padding: 14px 30px;
}

/* Blog CTA Section */
.blog-cta {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.blog-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.blog-cta p {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;
        max-width: 100%;
    }

    .search-input,
    .search-btn {
        width: 100%;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .category-info h3 {
        font-size: 22px;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .article-image {
        height: 150px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 200px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-form .btn {
        width: 100%;
    }

    .blog-categories,
    .featured-articles,
    .newsletter-section,
    .blog-cta {
        padding: 50px 0;
    }

    .blog-categories h2,
    .featured-articles h2,
    .blog-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 40px 0;
    }

    .blog-hero h1 {
        font-size: 24px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .blog-search {
        padding: 25px 0;
    }

    .search-input,
    .search-btn {
        font-size: 13px;
        padding: 12px 15px;
    }

    .category-header {
        gap: 10px;
        padding-bottom: 15px;
    }

    .category-icon {
        font-size: 36px;
        min-width: 50px;
    }

    .category-info h3 {
        font-size: 18px;
    }

    .category-info p {
        font-size: 13px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-image {
        height: 180px;
    }

    .article-body {
        padding: 15px;
    }

    .article-body h4 {
        font-size: 15px;
    }

    .article-excerpt {
        font-size: 12px;
    }

    .article-meta {
        font-size: 11px;
        gap: 10px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 180px;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-content h3 {
        font-size: 16px;
    }

    .featured-content p {
        font-size: 13px;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-content p {
        font-size: 14px;
    }

    .newsletter-input {
        padding: 12px 15px;
        font-size: 13px;
    }

    .newsletter-form .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .blog-categories,
    .featured-articles,
    .newsletter-section,
    .blog-cta {
        padding: 40px 0;
    }

    .blog-categories h2,
    .featured-articles h2,
    .blog-cta h2 {
        font-size: 22px;
    }

    .blog-cta p {
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}





/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

/* Article Hero Section */
.article-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.article-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.article-hero .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #d4a574;
}

.article-subtitle {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-item .label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.meta-item .value {
    font-size: 14px;
    color: #d4a574;
    font-weight: 600;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover .article-hero-img {
    transform: scale(1.05);
}

/* Article Wrapper */
.article-wrapper {
    padding: 60px 0;
    background-color: #fafafa;
}

.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.toc-box,
.share-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toc-box h3,
.share-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
    color: #2c2c2c;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.toc-link:hover {
    color: #d4a574;
    border-left-color: #d4a574;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #d4a574;
    color: white;
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-content h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;    
}

.article-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #d4a574;
}

.article-content ul{
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.article-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.article-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0px;
    color: rgb(212, 165, 116);
    font-weight: bold;
    font-size: 18px;
}

.article-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.article-content .article_header{
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.article-content .article-cta .article_header{
    font-size: 32px;
    margin-bottom: 20px;
    color: #d4a574;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.article-content blockquote{
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-left: 4px solid #d4a574;
    border-radius: 4px;
    padding: 20px;
    margin: 30px 0;  
    position: relative;  
}

.article-content blockquote::before {
    content: "Совет от мастера";
    position: absolute;
    left: 0px;
    color: rgb(212, 165, 116);
    font-weight: 600;
    font-size: 14px;
    padding-left: 20px;
}

.article-content blockquote p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    padding-top: 40px;
}

.article-section {
    padding-bottom: 50px;
    border-bottom: 1px solid #f0f0f0;
}

.article-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.article-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #d4a574;
}

.article-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.article-list {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.article-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.article-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 18px;
}

/* Article Images */
.article-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.article-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    padding: 12px;
    background-color: #f5f5f5;
    font-size: 13px;
    color: #777;
    text-align: center;
    margin: 0;
}

/* Master Tips */
.master-tip {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-left: 4px solid #d4a574;
    border-radius: 4px;
    padding: 20px;
    margin: 30px 0;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.tip-icon {
    font-size: 24px;
}

.tip-header h4 {
    font-size: 16px;
    color: #d4a574;
    margin: 0;
}

.master-tip p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.faq-question:hover {
    background-color: #e8e8e8;
    color: #d4a574;
}

.faq-question.active {
    background-color: #d4a574;
    color: white;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #fafafa;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* Styles Showcase */
.styles-showcase {
    margin-top: 30px;
}

.style-showcase-item {
    margin-bottom: 40px;
}

.style-showcase-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.showcase-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.showcase-grid img:hover {
    transform: scale(1.05);
}

/* Sketches Grid */
.sketches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sketch-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sketch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sketch-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sketch-item h4 {
    font-size: 16px;
    padding: 15px 15px 5px;
    color: #2c2c2c;
    margin: 0;
}

.sketch-item p {
    font-size: 13px;
    padding: 0 15px 15px;
    color: #777;
    margin: 0;
}

/* Author Card */
.author-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: flex-start;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 25px;
}

.author-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.author-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.author-title {
    font-size: 14px;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 15px !important;
}

.author-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px !important;
}

/* Related Masters */
.related-masters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.master-card-article {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.master-card-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.master-card-article img {
    width: 100%;
    object-fit: cover;
}

.master-card-article h3 {
    font-size: 18px;
    padding: 15px 15px 5px;
    color: #2c2c2c;
    margin: 0;
}

.master-card-article .specialty {
    font-size: 12px;
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 15px;
    margin: 0;
}

.master-card-article .master-desc {
    font-size: 13px;
    color: #777;
    padding: 10px 15px;
    margin: 0;
}

.master-card-article .btn {
    margin: 15px;
}

/* Article CTA */
.article-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border-radius: 8px;
    margin-top: 30px;
}

.article-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #d4a574;
}

.article-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ccc;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}


.coming-soon-description{
    font-size: 18px;
    margin-bottom: 15px;
    color: #d4a574;
    text-align: center;    
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .article-hero .container {
        grid-template-columns: 1fr;
    }

    .author-card {
        grid-template-columns: 1fr;
    }

    .author-photo {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .article-content {
        padding: 25px;
    }

    .article-section {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .article-section h2 {
        font-size: 24px;
    }

    .article-section h3 {
        font-size: 18px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .toc-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .toc-link {
        padding: 6px 0 6px 10px;
        font-size: 13px;
    }

    .showcase-grid,
    .sketches-grid,
    .related-masters {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .article-hero-img {
        height: 250px;
    }

    .article-content {
        padding: 20px;
        border-radius: 0;
    }

    .article-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .article-section h2 {
        font-size: 20px;
    }

    .article-section h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .article-section p {
        font-size: 14px;
    }

    .master-tip {
        padding: 15px;
        margin: 20px 0;
    }

    .tip-header h4 {
        font-size: 14px;
    }

    .master-tip p {
        font-size: 13px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 13px;
    }

    .article-cta {
        padding: 25px;
    }

    .article-cta h2 {
        font-size: 22px;
    }

    .article-cta p {
        font-size: 14px;
    }

    .toc-nav {
        grid-template-columns: 1fr;
    }

    .author-card {
        gap: 15px;
        padding: 20px;
    }

    .author-photo {
        width: 100%;
        height: auto;
    }

    .author-info h3 {
        font-size: 18px;
    }

    .author-title {
        font-size: 12px;
    }

    .author-bio {
        font-size: 13px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}