/* ================================================
   BLOG STYLES - Arendatyt
   Professional blog design for real estate platform
   ================================================ */

/* CSS Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   HEADER
   ================================================ */
.blog-header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.blog-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.blog-header .logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ecf0f1 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

/* ================================================
   HERO SECTION
   ================================================ */
.blog-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.9) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover no-repeat;
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ================================================
   BREADCRUMBS
   ================================================ */
.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--accent-color);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumbs .current {
    color: var(--text-color);
}

/* ================================================
   BLOG CATEGORIES
   ================================================ */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-btn {
    padding: 0.6rem 1.25rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* ================================================
   FEATURED ARTICLE
   ================================================ */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    padding: 2.5rem;
}

.featured-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2,
.featured-content .article-title-large {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.featured-content h2 a,
.featured-content .article-title-large a {
    color: var(--primary-color);
    transition: var(--transition);
}

.featured-content h2 a:hover,
.featured-content .article-title-large a:hover {
    color: var(--accent-color);
}

.featured-content .excerpt {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.article-meta .category {
    background: var(--bg-light);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.article-meta .date,
.article-meta .read-time {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ================================================
   ARTICLES GRID
   ================================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card .article-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card .article-content:first-of-type {
    padding-bottom: 0.5rem;
}

.article-card .article-content:last-of-type {
    padding-top: 0.5rem;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.article-content h3,
.article-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: #1a252f;
    font-weight: 800;
}

.article-content h3 a,
.article-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.article-content h3 a:hover,
.article-title a:hover {
    color: var(--accent-color);
}

.article-title-large {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.article-title-large a {
    color: var(--primary-color);
    transition: var(--transition);
}

.article-title-large a:hover {
    color: var(--accent-color);
}

.article-content .excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.article-footer .read-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-footer .read-more {
    font-size: 0.85rem;
}

/* ================================================
   LOAD MORE
   ================================================ */
.load-more-container {
    text-align: center;
    margin-bottom: 4rem;
}

.load-more-btn {
    padding: 1rem 2.5rem;
}

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text {
    color: #fff;
}

.newsletter-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ================================================
   POPULAR TOPICS
   ================================================ */
.popular-topics {
    padding-bottom: 4rem;
}

.popular-topics h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.topic-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.topic-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

/* ================================================
   FOOTER
   ================================================ */
.blog-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.footer-column p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contacts a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contacts a:hover {
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

.footer-column ul a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 1rem;
    }
    
    .blog-hero {
        padding: 3rem 0;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .featured-image {
        min-height: 250px;
        order: -1;
    }
    
    .featured-content {
        padding: 0;
    }
    
    .featured-content h2,
    .featured-content .article-title-large {
        font-size: 1.4rem;
    }
    
    .article-content h3,
    .article-title {
        font-size: 1.15rem;
        font-weight: 700;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contacts {
        align-items: center;
    }
    
    .blog-categories {
        justify-content: center;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .blog-hero h1 {
        font-size: 1.75rem;
    }
    
    .featured-content h2 {
        font-size: 1.25rem;
    }
    
    .article-content h3,
    .article-title {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .article-title-large {
        font-size: 1.3rem;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .topic-card {
        padding: 1rem;
    }
    
    .topic-card i {
        font-size: 1.5rem;
    }
    
    .topic-card span {
        font-size: 0.8rem;
    }
}

/* ================================================
   ARTICLE PAGE STYLES
   ================================================ */
.article-page-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.9) 100%),
                var(--header-bg, url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920')) center/cover no-repeat;
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.article-page-header h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.article-page-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.article-page-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Article Content */
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 0;
}

.article-main {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.article-main img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.article-main h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.article-main h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.article-main h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.article-main p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-main ul,
.article-main ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-main li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-main blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-light);
}

.article-main a {
    color: var(--accent-color);
    text-decoration: underline;
}

.article-main a:hover {
    color: var(--primary-color);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7ff 100%);
    border: 1px solid #d0e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #fff8e8 0%, #fff5e0 100%);
    border-color: #f0d8a0;
}

.warning-box h4 {
    color: #d4a017;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    padding: 0.4rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
    transition: var(--transition);
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

/* Related Articles in Sidebar */
.related-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-mini-item {
    display: flex;
    gap: 1rem;
}

.related-mini-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.related-mini-item h5 {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-color);
}

.related-mini-item h5:hover {
    color: var(--accent-color);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info .author-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin: 2rem 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.telegram { background: #0088cc; }
.share-btn.vk { background: #4a76a8; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: var(--primary-color); }

/* Related Articles Full */
.related-articles {
    padding: 3rem 0;
    background: var(--bg-light);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Article Page Responsive */
@media (max-width: 1024px) {
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-page-header h1 {
        font-size: 1.75rem;
    }
    
    .article-main {
        padding: 1.5rem;
    }
    
    .article-main h2 {
        font-size: 1.3rem;
    }
    
    .article-main h3 {
        font-size: 1.15rem;
    }
    
    .article-main p {
        font-size: 1rem;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Main Container */
.blog-main {
    padding: 2rem 0 4rem;
}

