/* ============================================
   blog-full.css – Shared styles for all blog posts
   ============================================ */

/* ----- Base blog container (already in critical CSS, but keep here) ----- */
.post-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.post-header {
    text-align: center;
    margin-bottom: 2rem;
}
.post-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.post-meta {
    color: #5c5c5c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.featured-image {
    width: 100%;
    border-radius: 20px;
    margin: 1rem 0 1.5rem;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.post-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #1A1A1A;
}
.post-content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}
.post-content h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
}
.post-content p {
    margin-bottom: 1.2rem;
}
.post-content ul, .post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}
.post-content li {
    margin-bottom: 0.5rem;
}

/* ----- Till Box & Copy Button ----- */
.till-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #eee;
    margin: 1rem 0;
}
#copyBtn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
}

/* ----- Trust Badge ----- */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    padding: 15px 25px;
    border-radius: 16px;
    margin: 2rem 0;
}
.trust-badge h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a1a1a;
}
.trust-badge p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #666;
}
.badge-icon {
    font-size: 24px;
}

/* ----- Main CTA Button ----- */
.cta-button {
    display: block;
    background: #009B4D;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    margin: 2rem 0;
    transition: background 0.2s;
}
.cta-button:hover {
    background: #007a3b;
}

/* ----- Related Posts ----- */
.related-posts {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
}
.related-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.related-posts ul {
    list-style: none;
    padding: 0;
}
.related-posts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.related-posts li:last-child {
    border-bottom: none;
}
.related-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}
.related-posts .related-info {
    flex: 1;
}
.related-posts a {
    color: #009B4D;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}
.related-posts a:hover {
    text-decoration: underline;
}
.related-date {
    font-size: 0.7rem;
    color: #999;
}

/* ----- Warning Box ----- */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-weight: 500;
}

/* ----- Soft CTA / Info Box ----- */
.soft-cta {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #c8e6c9;
}
.soft-cta strong {
    color: #2e7d32;
}

/* ----- FAQ Item ----- */
.faq-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ----- Comparison Table ----- */
.table-responsive {
    overflow-x: auto;
    margin: 1.5rem 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 400px;
}
.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eef2f6;
}
.comparison-table th {
    background: #f8f9fa;
    font-weight: 700;
}
.comparison-table tr:hover {
    background: #fafbfc;
}
.comparison-table td strong {
    color: #009B4D;
}

/* ----- Author Box (E‑E‑A‑T) ----- */
.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 24px;
    margin: 2rem 0;
    border: 1px solid #eef2f6;
}
.author-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-box p {
    margin: 0;
    font-size: 0.85rem;
    color: #444;
}
.author-box strong {
    color: #1a1a1a;
}

/* ----- Breadcrumbs (visible + schema) ----- */
.breadcrumbs {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #666;
}
.breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #aaa;
}
.breadcrumbs a {
    color: #009B4D;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ----- Mobile Adjustments ----- */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 1.8rem;
    }
    .post-container {
        padding: 0 1rem;
    }
    .related-posts li {
        gap: 10px;
    }
    .related-posts img {
        width: 55px;
        height: 55px;
    }
    .related-posts a {
        font-size: 0.85rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}
/* Related Posts – Clean Grid Style */
.related-posts {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eef2f6;
}

.related-posts h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.related-posts ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.related-posts li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fafbfc;
    padding: 0.8rem;
    border-radius: 16px;
    transition: background 0.2s;
}

.related-posts li:hover {
    background: #f5f7fa;
}

.related-posts img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-info a {
    font-weight: 600;
    color: #009B4D;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.3;
}

.related-info a:hover {
    text-decoration: underline;
}

.related-date {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Mobile: stack or reduce gap */
@media (max-width: 600px) {
    .related-posts li {
        gap: 0.8rem;
        padding: 0.6rem;
    }
    .related-posts img {
        width: 55px;
        height: 55px;
    }
    .related-info a {
        font-size: 0.9rem;
    }
}