/* ===================================================
   Blog Detail Page — Shared Styles
   Used by all pages inside /blog/
   =================================================== */

.header-top-bar-two {
    padding: 0.625rem 0 !important;
}

/* ===== Blog Detail Post Meta ===== */
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: #f8faf9;
    border-radius: 14px;
    border-left: 4px solid #2a7d2e;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-detail-meta .meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-meta .meta-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2a7d2e;
}

.blog-detail-meta .meta-author-info {
    display: flex;
    flex-direction: column;
}

.blog-detail-meta .meta-author-info .meta-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #9ba5b0;
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-meta .meta-author-info .meta-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0b3d2c;
    line-height: 1;
}

.blog-detail-meta .meta-divider {
    width: 1px;
    height: 36px;
    background: #d8dfe6;
}

.blog-detail-meta .meta-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta .meta-date i {
    font-size: 16px;
    color: #2a7d2e;
}

.blog-detail-meta .meta-date-info {
    display: flex;
    flex-direction: column;
}

.blog-detail-meta .meta-date-info .meta-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #9ba5b0;
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-meta .meta-date-info .meta-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1;
}

@media (max-width: 575px) {
    .blog-detail-meta {
        padding: 16px 20px;
        gap: 16px;
    }

    .blog-detail-meta .meta-divider {
        display: none;
    }
}

/* ===== Post Author Box ===== */
.author-card {
    background: linear-gradient(135deg, #f8faf9 0%, #eef3f0 100%);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 60px;
    border: 1px solid #e4ebe7;
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b3d2c, #2a7d2e, #4caf50);
}

.author-card .author-card-avatar {
    flex-shrink: 0;
}

.author-card .author-card-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2a7d2e;
    box-shadow: 0 4px 14px rgba(42, 125, 46, 0.2);
}

.author-card .author-card-content {
    flex-grow: 1;
}

.author-card .author-card-content .author-card-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2a7d2e;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-card .author-card-content .author-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b3d2c;
    margin-bottom: 8px;
    line-height: 1.2;
}

.author-card .author-card-content .author-card-bio {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #5a6672;
    margin-bottom: 14px;
}

.author-card .author-card-social {
    display: flex;
    gap: 10px;
}

.author-card .author-card-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0b3d2c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.author-card .author-card-social a:hover {
    background: #2a7d2e;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .author-card .author-card-social {
        justify-content: center;
    }
}

/* ===== Blog Content Styling ===== */
.entry-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0b3d2c;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f0ec;
}

.entry-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a5c3a;
    margin-top: 28px;
    margin-bottom: 12px;
}

.entry-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3d4f5f;
    margin-bottom: 16px;
}

/* ===== List Styling ===== */
.entry-content ul,
.entry-content ol {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #3d4f5f;
    margin-bottom: 16px;
    padding-left: 28px;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 8px;
}

.content-plant-list .plant-item ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.content-plant-list .plant-item ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #5a6672;
    line-height: 1.5;
    margin-bottom: 4px;
}

.content-highlight-box ul {
    padding-left: 22px;
    margin-bottom: 0;
    color: #2d4a3e;
}

.content-highlight-box ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.content-highlight-box ul li:last-child {
    margin-bottom: 0;
}

/* ===== Highlight Box ===== */
.content-highlight-box {
    background: linear-gradient(135deg, #f0f7f2 0%, #e8f5e9 100%);
    border-left: 4px solid #2a7d2e;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
}

.content-highlight-box p {
    margin-bottom: 12px;
    color: #2d4a3e;
}

.content-highlight-box p:last-child {
    margin-bottom: 0;
}

.content-highlight-box strong {
    color: #0b3d2c;
}

/* ===== Content Image Section ===== */
.content-image-section {
    border-radius: 16px;
    overflow: hidden;
    margin: 36px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-image-section img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.content-image-section .image-caption {
    background: #0b3d2c;
    color: #fff;
    padding: 14px 24px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: italic;
}

/* ===== Tip Card ===== */
.content-tip-card {
    background: #fff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 28px 28px 28px 72px;
    margin: 28px 0;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.content-tip-card::before {
    content: '\f0eb';
    font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
    font-weight: 300;
    position: absolute;
    left: 24px;
    top: 26px;
    font-size: 28px;
    color: #2a7d2e;
}

.content-tip-card .tip-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #2a7d2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ===== Plant / Feature List Grid ===== */
.content-plant-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.content-plant-list .plant-item {
    background: #f8faf9;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #e4ebe7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-plant-list .plant-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.content-plant-list .plant-item strong {
    display: block;
    color: #0b3d2c;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 6px;
}

.content-plant-list .plant-item span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #5a6672;
    line-height: 1.5;
}

/* ===== Final CTA Block ===== */
.content-final-cta {
    background: linear-gradient(135deg, #0b3d2c 0%, #1a5c3a 100%);
    border-radius: 16px;
    padding: 40px 36px;
    margin: 40px 0;
    color: #fff;
}

.content-final-cta h4 {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.2) !important;
    margin-top: 0 !important;
}

.content-final-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.content-final-cta a {
    color: #7ddc81;
    text-decoration: underline;
}

/* ===== FAQ Cards ===== */
.faq-card {
    background: #fff;
    border: 1px solid #e0e8e3;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-card .faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0b3d2c;
    margin-bottom: 10px;
}

.faq-card .faq-answer {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #3d4f5f;
    margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .content-plant-list {
        grid-template-columns: 1fr;
    }

    .content-image-section img {
        height: 220px;
    }

    .content-highlight-box {
        padding: 20px 22px;
    }

    .content-final-cta {
        padding: 28px 24px;
    }
}
