/* =========================================
   SERVICE PAGE
   ========================================= */

section.service-content {
    background: #fff;

    /* --- Featured Image --- */
    .service-featured-image {
        width: 100%;
        margin-bottom: 30px;
        overflow: hidden;
        border-radius: 4px;

        .service-featured-image__img {
            width: 100%;
            height: auto;
            display: block;
        }
    }

    /* --- Body Content --- */
    .service-body {

        h2 {
            font-size: clamp(1.25rem, 0.5rem + 1.8vw, 1.75rem);
            font-weight: 700;
            color: var(--black);
            text-transform: none;
            letter-spacing: 0;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1rem, 0.5rem + 1.2vw, 1.25rem);
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.75rem;
            padding-bottom: 0;
        }

        p {
            font-size: 16px;
            color: #444;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;

            li {
                font-size: 16px;
                color: #444;
                padding: 4px 0 4px 18px;
                position: relative;
                margin-bottom: 0;

                &::before {
                    content: '·';
                    position: absolute;
                    left: 0;
                    color: var(--blue);
                    font-weight: 900;
                    font-size: 20px;
                    line-height: 1.3;
                }
            }
        }

        a {
            color: #b38b32;
            text-decoration: underline;
            cursor: pointer;

            &:hover {
                color: var(--blue);
            }
        }
    }

    /* --- Sidebar --- */
    .service-sidebar {
        position: sticky;
        top: 30px;
    }

    /* --- CTA Box --- */
    .service-cta {
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
        text-align: center;
    }

    .service-cta__heading {
        padding: 22px 20px 18px;
        font-size: 18px;
        font-weight: 700;
        color: var(--black);
        text-transform: none;
        letter-spacing: 0;
        margin-bottom: 0;
        line-height: 1.5;
        border-bottom: 1px solid #ddd;

        a {
            color: #c0392b;
            text-decoration: underline;
            font-style: italic;
            cursor: pointer;
            transition: color 0.2s ease;

            &:hover {
                color: #962d22;
            }
        }
    }

    .service-cta__body {
        background: #f5f5f5;
        padding: 18px 20px;
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
        text-align: center;
    }

    /* --- Responsive --- */
    @media (max-width: 991px) {
        .service-sidebar {
            position: static;
            margin-top: 40px;
        }
    }
}
