/* About Neighborhoods Section - Variant 1 */

.about-neighborhoods-section {
    padding: 96px 0 110px;
    background-color: #ffffff;
}

.about-neighborhoods-container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 76px;
}

.about-neighborhoods-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 88px;
    align-items: start;
}

.about-neighborhoods-eyebrow {
    margin: 0 0 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.about-neighborhoods-eyebrow .decoration {
    color: var(--color-accent);
}

.about-neighborhoods-eyebrow .text {
    margin: 0 8px;
}

.about-neighborhoods-heading {
    margin: 0 0 28px;
    max-width: 860px;
    font-size: 64px;
    line-height: 1.12;
    font-weight: 700;
    color: #242b29;
}

.about-neighborhoods-description {
    max-width: 840px;
    margin-bottom: 42px;
}

.about-neighborhoods-description p {
    margin: 0;
    font-size: 17px;
    line-height: 1.54;
    color: #242b29;
}

.about-neighborhoods-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.about-neighborhoods-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 372px;
    min-height: 82px;
    padding: 22px 42px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-neighborhoods-cta-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(11, 61, 44, 0.18);
}

.about-neighborhoods-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(11, 61, 44, 0.24);
}

.about-neighborhoods-cta-secondary {
    background-color: #ffffff;
    color: #242b29;
    border: 1px solid rgba(36, 43, 41, 0.9);
    box-shadow: 0 14px 28px rgba(36, 43, 41, 0.12);
}

.about-neighborhoods-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(36, 43, 41, 0.18);
}

.about-neighborhoods-card {
    min-height: 590px;
    padding: 54px 48px 56px;
    border: 1px solid rgba(36, 43, 41, 0.35);
    border-radius: 0 0 140px 140px;
    background-color: #ffffff;
}

.about-neighborhoods-card-title {
    margin: 0 0 36px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
}

.about-neighborhoods-contact-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.about-neighborhoods-contact-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.about-neighborhoods-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--color-accent);
}

.about-neighborhoods-contact-icon svg {
    width: 42px;
    height: 42px;
}

.about-neighborhoods-contact-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--color-primary);
}

.about-neighborhoods-contact-text a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .about-neighborhoods-container {
        padding: 0 40px;
    }

    .about-neighborhoods-grid {
        gap: 48px;
        grid-template-columns: 1fr;
    }

    .about-neighborhoods-card {
        min-height: 0;
        max-width: 760px;
    }

    .about-neighborhoods-heading {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .about-neighborhoods-section {
        padding: 72px 0 84px;
    }

    .about-neighborhoods-container {
        padding: 0 24px;
    }

    .about-neighborhoods-grid {
        gap: 36px;
    }

    .about-neighborhoods-eyebrow,
    .about-neighborhoods-heading,
    .about-neighborhoods-description {
        text-align: center;
    }

    .about-neighborhoods-eyebrow {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .about-neighborhoods-heading {
        font-size: 40px;
        margin-bottom: 22px;
    }

    .about-neighborhoods-description {
        margin-bottom: 32px;
    }

    .about-neighborhoods-description p {
        font-size: 15px;
        line-height: 1.58;
    }

    .about-neighborhoods-actions {
        gap: 18px;
    }

    .about-neighborhoods-cta {
        width: 100%;
        min-width: 0;
        min-height: 72px;
        font-size: 16px;
    }

    .about-neighborhoods-card {
        padding: 36px 24px 40px;
        border-radius: 0 0 72px 72px;
    }

    .about-neighborhoods-card-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 28px;
    }

    .about-neighborhoods-contact-list {
        gap: 28px;
    }

    .about-neighborhoods-contact-item {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
        text-align: center;
    }

    .about-neighborhoods-contact-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-neighborhoods-heading {
        font-size: 32px;
    }
}
