/* Main Page */

.blog-post {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 70px 20px 100px;
}


/* =========================================
   Article Header
========================================= */

.blog-post-header {
    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;
}


.blog-category {
    margin: 0 0 15px;

    color: #4f6f57;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.blog-post-header h1 {
    margin: 0;

    color: #2d2d2d;

    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
}


.blog-post-date {
    margin-top: 20px;

    color: #777;

    font-size: 15px;
}

.blog-post-header-image {
    width: 100%;
    max-width: 850px;
    height: 350px;

    margin: 35px auto 0;

    overflow: hidden;
    border-radius: 10px;
}

.blog-post-header-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

/* =========================================
   Article Content
========================================= */

.blog-content {
    max-width: 800px;

    margin: 0 auto;
}


.blog-content p {
    margin: 0 0 24px;

    color: #444;

    font-size: 18px;
    line-height: 1.8;
}


.blog-content h2 {
    margin: 55px 0 20px;

    color: #2d2d2d;

    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}


.blog-content h3 {
    margin: 0 0 8px;

    color: #2d2d2d;

    font-size: 21px;
    line-height: 1.4;
}

/* Blog Post Lists */

.blog-content ul,
.blog-content ol {
    margin: 20px 0 25px;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 18px;
}

.blog-content ul li::marker {
    color: #4f6f57;
}

.blog-content ol li::marker {
    color: #4f6f57;
    font-weight: 600;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Blog Post Cards */

.blog-post-card {
    display: block;
    text-decoration: none;
    background-color: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    padding: 25px;

    min-height: 200px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Hover Effect */

.blog-post-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}


/* Card Content */

.blog-post-card-content {
    height: 100%;

    display: flex;
    flex-direction: column;
}

.blog-post-card h4 {
    margin: 0;

    font-size: 20px;
    line-height: 2.35;

    color: #2d2d2d;
}

/* =========================================
   Treatment Steps
========================================= */

.steps {
    margin: 30px 0 10px;
}


.step {
    display: flex;

    gap: 20px;

    margin-bottom: 25px;
}


.step-number {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #4f6f57;

    color: white;

    font-size: 17px;
    font-weight: 600;
}


.step-content {
    padding-top: 2px;
}


.step-content p {
    margin-bottom: 0;
}


/* =========================================
   Call To Action
========================================= */

.blog-cta {
    margin: 65px 0;
    padding: 45px 40px;
    border-radius: 10px;
    background-color: #4f6f57;
    text-align: center;
}

.blog-cta h2 {
    margin: 0 0 18px;
    color: white;
    font-size: 30px;
}

.blog-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: white;

    font-size: 17px;
    line-height: 1.7;
}


.cta-button {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 5px;
    background-color: #D6B77A;
    color: #2d2d2d;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
    transition: opacity 0.2s ease;
}


.cta-button:hover {
    opacity: 0.85;
}


/* =========================================
   FAQ
========================================= */

.faq {
    margin-top: 70px;
}


.faq > h2 {
    margin-bottom: 35px;
}


.faq-item {
    padding: 25px 0;

    border-bottom: 1px solid #e5e5e5;
}


.faq-item:first-of-type {
    border-top: 1px solid #e5e5e5;
}


.faq-item h3 {
    margin-bottom: 10px;
}


.faq-item p {
    margin-bottom: 0;

    font-size: 17px;
}

p a {
    color: #4f6f57 !important;
    text-decoration: none;
}
 
p a:hover {
    text-decoration: underline;
}



/* =========================================
   Back To Blog
========================================= */

.back-to-blog {
    margin-top: 60px;

    text-align: center;
}


.back-to-blog a {
    color: #4f6f57;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
}


.back-to-blog a:hover {
    text-decoration: underline;
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 700px) {

    .blog-post {
        padding: 50px 20px 70px;
    }


    .blog-post-header {
        margin-bottom: 45px;
    }


    .blog-post-header h1 {
        font-size: 34px;
    }

    .blog-post-header-image {
        height: 220px;
    }

    .blog-content p {
        font-size: 17px;
        line-height: 1.7;
    }

    .blog-content h2 {
        margin-top: 45px;

        font-size: 27px;
    }

    .step {
        gap: 15px;
    }

    .step-number {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }

    .step-content h3 {
        font-size: 19px;
    }

    .blog-cta {
        margin: 50px 0;

        padding: 35px 25px;
    }

    .blog-cta h2 {
        font-size: 26px;
    }

    .blog-cta p {
        font-size: 16px;
    }

}

