/* ==========================================================================
   PAGE: Single Service
   assets/css/components/pages/single-service.css

   The hero layout (min-height, flex, padding-top, background) is inherited
   from .hero-service in components/hero.css.
   This file handles only what is unique to the single service CPT template.
   ========================================================================== */

/* Featured image background (same pattern as .hero-job-single .hero-bg-image) */
.hero-service .hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-service .hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* Ensure hero content sits above the background image */
.hero-service .hero-content {
    position: relative;
    z-index: 1;
}

/* Hero action buttons row */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Service content body (the_content area) */
.service-content {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.service-content h2,
.service-content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.service-content ul,
.service-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.service-content li {
    margin-bottom: 0.4rem;
}

.service-content a {
    color: var(--accent);
    text-decoration: none;
}

.service-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
