/* doc-project | public/assets/css/home-seo.css | contenus SEO locaux publics masqués après identification */

[data-home-seo-public][hidden] {
    display: none;
}

.home-seo-intro,
.home-seo-details {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.home-seo-intro {
    margin-block: 20px 8px;
    padding: clamp(20px, 4vw, 32px);
    border: 1px solid var(--border, rgba(56, 35, 74, .14));
    border-radius: 24px;
    background: var(--surface, #fff);
    box-shadow: 0 12px 32px rgba(40, 25, 54, .08);
}

.home-seo-intro h2,
.home-seo-details h2 {
    margin: 6px 0 10px;
    line-height: 1.2;
}

.home-seo-intro p,
.home-seo-details p {
    max-width: 78ch;
    margin: 0;
    line-height: 1.7;
}

.home-seo-details {
    margin-block: 32px 112px;
    padding: clamp(22px, 5vw, 40px);
    border-radius: 28px;
    background: rgba(255, 255, 255, .72);
}

.home-seo-details__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 5vw, 48px);
}

.home-seo-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border, rgba(56, 35, 74, .14));
    font-style: normal;
}

.home-seo-contact strong {
    flex-basis: 100%;
}

.home-seo-contact a {
    font-weight: 700;
    text-underline-offset: 3px;
}

.home-seo-contact__hours {
    white-space: normal;
}

@media (max-width: 720px) {
    .home-seo-intro,
    .home-seo-details {
        width: min(100% - 20px, 1120px);
    }

    .home-seo-intro {
        margin-top: 12px;
        padding: 18px;
        border-radius: 20px;
    }

    .home-seo-details {
        margin-block: 24px 104px;
        padding: 20px;
        border-radius: 22px;
    }

    .home-seo-details__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-seo-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}