:root {
    --wooden-bg: #D4A017;
    --sun-gradient-start: #F5E8C7;
    --sun-gradient-end: #FF9A8B;
    --terracotta: #D2691E;
    --foliage-green: #4A7048;
    --mountain-green: #A9CBA4;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(135deg, var(--sun-gradient-start) 0%, var(--sun-gradient-end) 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #f8f9fa;
}

.blog-header {
    background: linear-gradient(135deg, #20B2AA 0%, #48D1CC 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 0;
}
.blog-header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.blog-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}
.blog-subscribe-strip {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 8px var(--shadow);
}
.blog-subscribe-strip .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}
.blog-subscribe-strip p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    max-width: 36rem;
}
.blog-subscribe-strip .btn-rss {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: #20B2AA;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.15s;
}
.blog-subscribe-strip .btn-rss:hover {
    background: #178f8a;
    color: #fff !important;
    transform: translateY(-1px);
}
.blog-subscribe-strip .btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    background: transparent;
    color: #20B2AA !important;
    border: 2px solid #20B2AA;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}
.blog-subscribe-strip .btn-secondary-cta:hover {
    background: rgba(32, 178, 170, 0.08);
    color: #178f8a !important;
}
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.filter-btn {
    padding: 8px 20px;
    border: 2px solid #20B2AA;
    background: white;
    color: #20B2AA;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
    background: #20B2AA;
    color: white;
    text-decoration: none;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}
.blog-card-image-wrap {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #20B2AA 0%, #48D1CC 100%);
    overflow: hidden;
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-logo-watermark {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 44px;
    height: auto;
    max-height: 32px;
    object-fit: contain;
    opacity: 0.92;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.blog-card-content {
    padding: 25px;
}
.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: #20B2AA;
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.3;
}
.blog-card-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.no-posts h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Footer - Match Landing Page */
.footer {
    background: var(--foliage-green);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}
