.community-hero {
    padding: 60px 0 30px;
}

.community-hero__inner {
    max-width: 700px;
}

.community-hero__kicker {
    font-size: 13px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}

.community-hero__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.community-hero__intro {
    font-size: 16px;
    color: #4b5563;
}

.community-grid {
    padding: 30px 0 60px;
}

.community-grid__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.community-card {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.community-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.community-card__label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.community-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

.community-card__text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 12px;
}

.community-card__link {
    font-size: 13px;
    color: #1d4ed8;
}

/* MOBILE */
@media (max-width: 768px) {
    .community-grid__wrap {
        grid-template-columns: 1fr;
    }
}