/* ====================================
   BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    color: #014d29;
    background: #f4f3e8;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #014d29;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #013b1f;
}

/* ====================================
   HEADER
   ==================================== */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(190, 215, 197, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    font-weight: 300;
    font-size: 15px;
    padding: 6px 0;
    color: rgba(1, 77, 41, 0.8);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    border-bottom-color: #014d29;
    color: #014d29;
}

.main-nav a.nav-highlight {
    background: #014d29;
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    border-radius: 25px;
    border-bottom: none;
    font-weight: 300;
}

.main-nav a.nav-highlight:hover {
    background: #013b1f;
    color: white;
}

/* ====================================
   HERO SECTION
   ==================================== */
.blog-hero {
    background: linear-gradient(135deg, #f4f3e8 0%, rgba(190, 215, 197, 0.4) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(190, 215, 197, 0.2);
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: #014d29;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(1, 77, 41, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ====================================
   BLOG LAYOUT
   ==================================== */
.blog-main {
    padding: 50px 0;
    background: rgba(244, 243, 232, 0.3);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ====================================
   POSTS GRID
   ==================================== */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.post-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(190, 215, 197, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(1, 77, 41, 0.04);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(1, 77, 41, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.post-card-image {
    height: 200px;
    overflow: hidden;
    background: rgba(244, 243, 232, 0.5);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(1, 77, 41, 0.5);
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.post-tag {
    background: rgba(244, 243, 232, 0.7);
    color: #014d29;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    border: 1px solid rgba(190, 215, 197, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: #014d29;
    color: white;
}

.post-card h2 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-card h2 a {
    color: #014d29;
}

.post-card h2 a:hover {
    color: #013b1f;
}

.post-excerpt {
    color: rgba(1, 77, 41, 0.6);
    font-size: 15px;
    margin-bottom: 15px;
    flex: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #014d29;
    transition: all 0.3s ease;
}

.post-read-more:hover {
    gap: 12px;
    color: #013b1f;
}

/* ====================================
   SIDEBAR
   ==================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(5px);
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(190, 215, 197, 0.25);
    box-shadow: 0 2px 10px rgba(1, 77, 41, 0.03);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    background: rgba(255, 255, 255, 0.88);
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 14px;
    color: #014d29;
    letter-spacing: 0.5px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-cloud .tag {
    background: rgba(244, 243, 232, 0.6);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(190, 215, 197, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 300;
}

.tag-cloud .tag:hover {
    background: #014d29;
    color: white;
}

.tag-cloud .tag .count {
    color: rgba(1, 77, 41, 0.4);
    font-size: 11px;
    margin-left: 3px;
}

.tag-cloud .tag:hover .count {
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   SIDEBAR CTA BUTTONS - SOFTER STYLING
   ==================================== */
.sidebar-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 11px 20px;
    text-align: center;
    border-radius: 30px;
    font-weight: 300;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.sidebar-cta-btn.primary {
    background: rgba(1, 77, 41, 0.85);
    color: rgba(255, 255, 255, 0.95);
}

.sidebar-cta-btn.primary:hover {
    background: #014d29;
    transform: scale(1.02);
    color: white;
}

.sidebar-cta-btn.secondary {
    background: rgba(244, 243, 232, 0.7);
    color: #014d29;
    border: 1px solid rgba(190, 215, 197, 0.4);
}

.sidebar-cta-btn.secondary:hover {
    background: rgba(1, 77, 41, 0.1);
    transform: scale(1.02);
}

.newsletter-widget .sidebar-cta-btn {
    background: rgba(1, 77, 41, 0.85);
    color: rgba(255, 255, 255, 0.95);
}

.newsletter-widget .sidebar-cta-btn:hover {
    background: #014d29;
    transform: scale(1.02);
    color: white;
}

/* CTA Widgets - Softer styling */
.cta-widget-primary {
    background: rgba(244, 243, 232, 0.6);
    border: 1px solid rgba(190, 215, 197, 0.3);
}

.cta-widget-primary h3 {
    color: #014d29;
}

.cta-widget-primary p {
    color: rgba(1, 77, 41, 0.65);
}

.cta-widget-primary .sidebar-cta-btn {
    background: rgba(1, 77, 41, 0.8);
    color: rgba(255, 255, 255, 0.95);
}

.cta-widget-primary .sidebar-cta-btn:hover {
    background: #014d29;
    transform: scale(1.02);
    color: white;
}

.cta-widget-secondary {
    background: rgba(244, 243, 232, 0.5);
    border: 1px solid rgba(190, 215, 197, 0.25);
}

.cta-widget-secondary h3 {
    color: #014d29;
}

.cta-widget-secondary p {
    color: rgba(1, 77, 41, 0.65);
}

.cta-widget-secondary .sidebar-cta-btn {
    background: rgba(1, 77, 41, 0.75);
    color: rgba(255, 255, 255, 0.95);
}

.cta-widget-secondary .sidebar-cta-btn:hover {
    background: #014d29;
    transform: scale(1.02);
    color: white;
}

/* ====================================
   SIDEBAR RELATED POSTS
   ==================================== */
.related-posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-post-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: rgba(244, 243, 232, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid rgba(190, 215, 197, 0.4);
}

.related-post-item:hover {
    background: rgba(190, 215, 197, 0.2);
    transform: translateX(4px);
}

.related-post-title {
    font-size: 15px;
    font-weight: 300;
    color: #014d29;
    line-height: 1.4;
    margin-bottom: 3px;
}

.related-post-date {
    font-size: 12px;
    color: rgba(1, 77, 41, 0.4);
}

/* ====================================
   INDIVIDUAL POST PAGE
   ==================================== */
.post-page {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(190, 215, 197, 0.25);
    box-shadow: 0 2px 12px rgba(1, 77, 41, 0.03);
}

.post-page .post-header {
    margin-bottom: 25px;
}

.post-page .post-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #014d29;
    letter-spacing: -0.3px;
}

.post-page .post-meta {
    font-size: 14px;
    color: rgba(1, 77, 41, 0.5);
}

/* POST HERO IMAGE */
.post-hero-image {
    margin: 0 0 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.post-hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ====================================
   TL;DR CARD
   ==================================== */
.tldr-card {
    background: rgba(244, 243, 232, 0.6);
    border: 1px solid rgba(190, 215, 197, 0.35);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 20px 0 35px 0;
}

.tldr-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tldr-label {
    font-size: 18px;
    font-weight: 400;
    color: #014d29;
    letter-spacing: 0.5px;
}

.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tldr-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(1, 77, 41, 0.8);
    border-bottom: 1px solid rgba(190, 215, 197, 0.15);
    font-weight: 300;
}

.tldr-list li:last-child {
    border-bottom: none;
}

.tldr-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #014d29;
    font-weight: 400;
    font-size: 18px;
}

.tldr-list li strong {
    color: #014d29;
    font-weight: 400;
}

/* ====================================
   FORRÁSOK CARD
   ==================================== */
.sources-card {
    background: rgba(244, 243, 232, 0.5);
    border: 1px solid rgba(190, 215, 197, 0.25);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 40px 0 30px 0;
}

.sources-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.sources-label {
    font-size: 18px;
    font-weight: 400;
    color: #014d29;
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(1, 77, 41, 0.7);
    font-weight: 300;
}

.sources-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 6px;
    color: #014d29;
    font-weight: 400;
    font-size: 18px;
}

.sources-list li a {
    color: #014d29;
    text-decoration: underline;
    word-break: break-all;
}

.sources-list li a:hover {
    color: #013b1f;
}

/* ====================================
   INLINE CTA CARD - MATCHING SCREENSHOT STYLE
   ==================================== */
.cta-inline-card {
    background: rgba(244, 243, 232, 0.7);
    border: 1px solid rgba(190, 215, 197, 0.4);
    border-radius: 16px;
    padding: 30px 35px;
    margin: 40px 0 20px 0;
    text-align: center;
}

.cta-inline-card h3 {
    color: #014d29;
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 12px;
}

.cta-inline-card p {
    color: rgba(1, 77, 41, 0.7);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-weight: 300;
}

.cta-inline-card .btn-primary {
    background: #014d29;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 300;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.cta-inline-card .btn-primary:hover {
    background: #013b1f;
    transform: scale(1.03);
    color: white;
    box-shadow: 0 4px 15px rgba(1, 77, 41, 0.2);
}

/* ====================================
   POST CONTENT
   ==================================== */
.post-content {
    font-size: 17px;
    line-height: 1.8;
}

.post-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    font-weight: 300;
    color: #014d29;
}

.post-content h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    font-weight: 300;
    color: #014d29;
}

.post-content p {
    margin-bottom: 20px;
    color: rgba(1, 77, 41, 0.8);
    font-weight: 300;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: rgba(1, 77, 41, 0.8);
    font-weight: 300;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.post-content blockquote {
    background: rgba(244, 243, 232, 0.5);
    border-left: 4px solid #014d29;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
}

/* ====================================
   POST NAVIGATION
   ==================================== */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(190, 215, 197, 0.25);
}

.post-navigation a {
    padding: 10px 20px;
    background: rgba(244, 243, 232, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #014d29;
    font-weight: 300;
}

.post-navigation a:hover {
    background: rgba(190, 215, 197, 0.3);
    color: #013b1f;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
    background: #014d29;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin-bottom: 4px;
    font-weight: 300;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-info a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 300;
}

.footer-social a:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.footer-social .social-icon {
    font-size: 16px;
    line-height: 1;
}

/* ====================================
   FILTER INDICATOR
   ==================================== */
.filter-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(244, 243, 232, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(190, 215, 197, 0.25);
    margin-bottom: 30px;
}

.filter-indicator .tag-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-indicator .tag-label {
    font-size: 14px;
    color: rgba(1, 77, 41, 0.6);
    font-weight: 300;
}

.filter-indicator .tag-name {
    font-size: 18px;
    font-weight: 400;
    color: #014d29;
}

.filter-indicator .clear-filter {
    background: transparent;
    border: none;
    color: #014d29;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.filter-indicator .clear-filter:hover {
    background: rgba(190, 215, 197, 0.25);
}

/* ====================================
   UTILITY
   ==================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(190, 215, 197, 0.25);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #014d29;
    color: white;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 300;
}

.btn-primary:hover {
    background: #013b1f;
    transform: scale(1.05);
    color: white;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }
    
    .main-nav ul {
        gap: 10px;
        justify-content: center;
    }
    
    .main-nav a {
        font-size: 14px;
    }
    
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-page {
        padding: 25px;
    }
    
    .post-page .post-title {
        font-size: 28px;
    }
    
    .post-hero-image img {
        max-height: 250px;
    }
    
    .tldr-card {
        padding: 20px;
    }
    
    .tldr-list li {
        font-size: 15px;
        padding: 6px 0 6px 24px;
    }
    
    .sources-card {
        padding: 20px;
    }
    
    .sources-list li {
        font-size: 13px;
    }
    
    .cta-inline-card {
        padding: 25px 20px;
    }
    
    .cta-inline-card h3 {
        font-size: 20px;
    }
    
    .cta-inline-card p {
        font-size: 15px;
    }
    
    .cta-inline-card .btn-primary {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .post-page {
        padding: 18px;
    }
    
    .post-page .post-title {
        font-size: 24px;
    }
    
    .post-hero-image img {
        max-height: 180px;
    }
    
    .tldr-card {
        padding: 15px;
    }
    
    .tldr-list li {
        font-size: 14px;
        padding: 5px 0 5px 20px;
    }
    
    .tldr-label {
        font-size: 16px;
    }
    
    .sources-card {
        padding: 15px;
    }
    
    .sources-list li {
        font-size: 12px;
        padding: 4px 0 4px 18px;
    }
    
    .cta-inline-card {
        padding: 20px 15px;
    }
    
    .cta-inline-card h3 {
        font-size: 18px;
    }
    
    .cta-inline-card p {
        font-size: 14px;
    }
    
    .cta-inline-card .btn-primary {
        font-size: 15px;
        padding: 10px 25px;
    }
    
    .sidebar-widget {
        padding: 16px;
    }
    
    .footer-social a {
        font-size: 12px;
        padding: 4px 10px;
    }
}
/* ====================================
   SOCIAL ICONS - FONT AWESOME
   ==================================== */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ====================================
   POST SUBTITLE
   ==================================== */
.post-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(1, 77, 41, 0.65);
    margin-top: -10px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ====================================
   IMAGE SOURCE REFERENCE
   ==================================== */
.image-source {
    font-size: 13px;
    color: rgba(1, 77, 41, 0.5);
    margin-top: 6px;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: right;
}

.image-source a {
    color: rgba(1, 77, 41, 0.6);
    text-decoration: underline;
}

.image-source a:hover {
    color: #014d29;
}

/* ====================================
   TLDR JUMP LINK
   ==================================== */
.tldr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tldr-link {
    color: #014d29;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.5;
    padding: 5px 10px;
    border-radius: 50%;
    border: 1px solid rgba(1, 77, 41, 0.2);
}

.tldr-link:hover {
    opacity: 1;
    transform: translateY(2px);
    background: rgba(1, 77, 41, 0.05);
    border-color: #014d29;
}

/* ====================================
   BOTTOM CTA CARDS - TWO SIDE BY SIDE
   ==================================== */
.cta-bottom-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0 20px 0;
}

.cta-bottom-card {
    background: rgba(244, 243, 232, 0.6);
    border: 1px solid rgba(190, 215, 197, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-bottom-card:hover {
    background: rgba(244, 243, 232, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(1, 77, 41, 0.08);
}

.cta-bottom-card h3 {
    color: #014d29;
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.cta-bottom-card p {
    color: rgba(1, 77, 41, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 300;
}

.cta-bottom-card .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #014d29;
    color: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.cta-bottom-card .btn-primary:hover {
    background: #013b1f;
    transform: scale(1.03);
    color: white;
    box-shadow: 0 4px 15px rgba(1, 77, 41, 0.2);
}

/* ====================================
   RESPONSIVE - Bottom CTAs
   ==================================== */
@media (max-width: 768px) {
    .cta-bottom-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-bottom-card {
        padding: 20px;
    }
    
    .cta-bottom-card h3 {
        font-size: 18px;
    }
    
    .post-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .cta-bottom-card {
        padding: 16px;
    }
    
    .cta-bottom-card h3 {
        font-size: 16px;
    }
    
    .cta-bottom-card p {
        font-size: 14px;
    }
    
    .cta-bottom-card .btn-primary {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .post-subtitle {
        font-size: 15px;
    }
}
/* ====================================
   TLDR LIST WITH ANCHOR LINKS
   ==================================== */
.tldr-list li a {
    color: rgba(1, 77, 41, 0.85);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.tldr-list li a:hover {
    color: #014d29;
    transform: translateX(4px);
}

.tldr-list li a::before {
    content: "→ ";
    opacity: 0;
    transition: all 0.3s ease;
}

.tldr-list li a:hover::before {
    opacity: 1;
    transform: translateX(-2px);
}

/* Smooth scrolling for anchor jumps */
html {
    scroll-behavior: smooth;
}

/* Target headings with IDs - add visual indicator */
h2[id]::before,
h3[id]::before {
    content: "§ ";
    color: rgba(1, 77, 41, 0.2);
    font-weight: 300;
    font-size: 0.8em;
}

/* Add a subtle background highlight when jumping to a section */
h2[id]:target,
h3[id]:target {
    background: rgba(190, 215, 197, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

/* ====================================
   HEADER - BRAND NAME STYLES
   ==================================== */
.site-logo {
    font-size: 22px;
    font-weight: 300;
    color: #014d29;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.site-logo:hover {
    color: #013b1f;
    transform: scale(1.01);
}

/* Make sure header aligns properly with text instead of logo */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Responsive adjustments for the brand name */
@media (max-width: 768px) {
    .site-logo {
        font-size: 18px;
        text-align: center;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 16px;
    }
}