/* vlhomeblocks — utilitaires CSS hors @apply Tailwind (assets non compilés côté thème) */

/* Hero — contenu WYSIWYG : reset margins + style des liens (sur fond blanc) */
.vlhb-hero-subtitle p { margin: 0 0 1rem; }
.vlhb-hero-subtitle p:last-child { margin-bottom: 0; }
.vlhb-hero-subtitle a {
    color: #50af47;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.vlhb-hero-subtitle a:hover { color: #42873c; }
.vlhb-hero-subtitle ul, .vlhb-hero-subtitle ol {
    margin: 0 0 1rem 1.25rem;
}
.vlhb-hero-subtitle ul li { list-style: disc; }
.vlhb-hero-subtitle ol li { list-style: decimal; }
.vlhb-hero-subtitle strong { font-weight: 600; color: #253539; }
.vlhb-hero-subtitle em { font-style: italic; }


.vlhb-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 1px solid #eaeaea;
    border-radius: 0.5rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.vlhb-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-color: #50af47;
}

.vlhb-service-icon {
    width: 56px;
    height: 56px;
    color: #50af47;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vlhb-service-icon svg {
    width: 100%;
    height: 100%;
}

.vlhb-service-title {
    font-family: 'AkrobatBold', sans-serif;
    font-size: 1.5rem;
    color: #253539;
    margin: 0 0 .75rem;
}

.vlhb-service-desc {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.vlhb-service-cta {
    color: #50af47;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: auto;
    transition: color .2s ease;
}
a.vlhb-service-card:hover .vlhb-service-cta {
    color: #42873c;
}
