/* HOME SERVICES — shortcode [home_services] */

.home-services {
    display: flex;
    flex-direction: column;
    gap: var(--Spacing-xl, 3rem);
}

/* Header */
.home-services__header {
    display: flex;
    flex-direction: column;
    gap: var(--Spacing-xs, 0.5rem);
    max-width: 52ch;
}

.home-services__titre {
    font-family: var(--font-family-heading, 'Epilogue', sans-serif);
    font-weight: 700;
    color: var(--Neutral-900, #1a1a1a) !important;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-services__sous-titre {
    font-family: var(--font-family-body, 'Inter', sans-serif);
    font-size: var(--font-size-p, 1rem);
    color: var(--Neutral-600, #5c5c5c);
    line-height: 1.65;
    margin: 0;
}

/* Grid */
.home-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--Spacing-m, 1.25rem);
}

/* Carte */
.service-card {
    display: flex;
    flex-direction: column;
    gap: var(--Spacing-s, 0.75rem);
    padding: var(--Spacing-xl, 2.5rem);
    background: #fff;
    border: 1px solid var(--Neutral-200, #e5e5e5);
    border-radius: var(--Radius-m, 12px);
    text-decoration: none;
    color: inherit;
    cursor: default;
    transition: box-shadow 0.2s ease;
}

a.service-card { cursor: pointer; }
a.service-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Icône image */
.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--Primary-50, #f4f9e6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: var(--Spacing-m, 1.25rem);
    overflow: hidden;
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: var(--Primary-main);
    color: var(--Primary-main);
    flex-shrink: 0;
}

.service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.service-card__icon span {
    font-size: 1.5rem;
    line-height: 1;
}

/* Titre */
.service-card__titre {
    font-family: var(--font-family-heading, 'Epilogue', sans-serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--Neutral-900, #1a1a1a);
    margin: 0;
    line-height: 1.3;
}

/* Texte */
.service-card__texte {
    font-family: var(--font-family-body, 'Inter', sans-serif);
    font-size: 0.9375rem;
    color: var(--Neutral-600, #5c5c5c);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Flèche */
.service-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: var(--Spacing-s, 0.75rem);
    font-family: var(--font-family-body, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--Primary-600);
}

/* Responsive */
@media (max-width: 768px) {
    .home-services__grid { grid-template-columns: 1fr; }

    .service-card { padding: var(--Spacing-l, 2rem); }
}
