/* ============================================================
   WPCarSync — service-detail.css
   Einzelseite für einen Service / eine Dienstleistung
   Voraussetzung: style.css, marke.css (Teaser, Brand-Section)
   ============================================================ */


/* ============================================================
   SERVICE TEASER — Modifier auf .wpcs-brand-teaser
   Icon, Kategorie-Eyebrow, Titel, Standort-Liste
   ============================================================ */

/* Optionales Icon */
.wpcs-hero__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--wpcs-radius-md);
    background: var(--wpcs-color-primary-dim);
    color: var(--wpcs-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Standort-Liste */
.wpcs-hero__locations {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.wpcs-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--wpcs-font-mono);
    font-size: var(--wpcs-text-xs);
    letter-spacing: 0.06em;
    color: var(--wpcs-color-text-muted);
}

.wpcs-hero__location svg {
    color: var(--wpcs-color-primary);
}


/* ============================================================
   SERVICE CONTENT (WordPress-Inhaltsbereich)
   ============================================================ */

/* WP Badge */
.wpcs-service-content__wp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--wpcs-font-mono);
    font-size: var(--wpcs-text-2xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--wpcs-color-text-dim);
    padding: 4px 12px;
    border: 1px dashed var(--wpcs-color-border-hover);
    border-radius: var(--wpcs-radius-sm);
    margin-bottom: 32px;
}

.wpcs-service-content__body {
    max-width: var(--wpcs-content-body-width);
}

/* Intro */
.wpcs-service-content__intro {
    margin-bottom: 40px;
}

.wpcs-service-content__intro h2 {
    font-family: var(--wpcs-font-label);
    font-size: var(--wpcs-text-3xl);
    font-weight: 700;
    color: var(--wpcs-color-text);
    margin: 0 0 16px;
}

.wpcs-service-content__intro p {
    font-family: var(--wpcs-font-body);
    font-size: var(--wpcs-text-base);
    line-height: 1.8;
    color: var(--wpcs-color-text-muted);
    margin: 0 0 12px;
}

/* Content Sections */
.wpcs-service-content__section {
    margin-bottom: 40px;
}

.wpcs-service-content__section h3 {
    font-family: var(--wpcs-font-label);
    font-size: var(--wpcs-text-2xl);
    font-weight: 700;
    color: var(--wpcs-color-text);
    margin: 0 0 16px;
}

.wpcs-service-content__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpcs-service-content__section li {
    font-family: var(--wpcs-font-body);
    font-size: var(--wpcs-text-base);
    line-height: 1.6;
    color: var(--wpcs-color-text-muted);
    padding-left: 22px;
    position: relative;
}

.wpcs-service-content__section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wpcs-color-primary);
}


/* ============================================================
   HIGHLIGHTS GRID
   ============================================================ */

.wpcs-service-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wpcs-service-highlight {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: var(--wpcs-color-surface);
    border: 1px solid var(--wpcs-color-border);
    border-radius: var(--wpcs-radius-md);
    transition: border-color var(--wpcs-transition);
}

.wpcs-service-highlight:hover {
    border-color: var(--wpcs-color-border-hover);
}

.wpcs-service-highlight__icon {
    width: 38px;
    height: 38px;
    border-radius: var(--wpcs-radius-sm);
    background: var(--wpcs-color-primary-dim);
    color: var(--wpcs-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wpcs-service-highlight div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wpcs-service-highlight strong {
    font-family: var(--wpcs-font-label);
    font-size: var(--wpcs-text-base);
    font-weight: 600;
    color: var(--wpcs-color-text);
}

.wpcs-service-highlight span {
    font-family: var(--wpcs-font-body);
    font-size: var(--wpcs-text-sm);
    color: var(--wpcs-color-text-muted);
    line-height: 1.4;
}


/* Service-Card-Modifier liegen mit der Model-Card-Basis in cards.css (Basis-Layer). */


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .wpcs-service-highlights {
        grid-template-columns: 1fr;
    }
}
