.community-entry {
    max-width: 880px;
    margin: 0 auto;
}

.community-entry__header {
    max-width: 680px;
    margin-bottom: var(--space-xl);
}

.community-entry__eyebrow {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    margin: 0 0 1.7rem;
    color: var(--plum);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    background: var(--rose-pale);
    border-top: 1px solid var(--rose-light);
    border-bottom: 1px solid var(--rose-light);
}

.community-entry__header h1 {
    margin-bottom: 0.65rem;
    color: var(--plum);
    font-size: 34px;
    line-height: 1.12;
}

.community-entry__header p:not(.community-entry__eyebrow) {
    margin: 0;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.65;
}
.community-entry__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    padding: 0;
    margin: 0;
    list-style: none;
}

.community-entry__tile {
    min-width: 0;
}

.community-entry__link {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: var(--space-md);
    align-items: center;
    min-height: 156px;
    height: 100%;
    padding: var(--space-xl);
    overflow: hidden;
    color: var(--text);
    text-decoration: none;
    background: linear-gradient(145deg, var(--white), var(--warm-white));
    border: 1px solid var(--warm-gray-dark);
    border-radius: var(--radius);
    box-shadow: 0 14px 36px rgba(44, 44, 42, 0.08),
                0 2px 8px rgba(44, 44, 42, 0.05);
    transition: border-color var(--transition),
                box-shadow var(--transition),
                transform var(--transition);
}

.community-entry__link::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--rose);
    opacity: 0.9;
}

.community-entry__tile:nth-child(2) .community-entry__link::before {
    background: var(--lavender);
}

.community-entry__link:hover {
    color: var(--text);
    text-decoration: none;
    border-color: var(--plum-light);
    box-shadow: 0 18px 42px rgba(44, 44, 42, 0.12),
                0 3px 10px rgba(44, 44, 42, 0.06);
    transform: translateY(-2px);
}

.community-entry__link:focus-visible {
    outline: 3px solid var(--lavender);
    outline-offset: 3px;
}

.community-entry__icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--plum);
    background: var(--cream);
    border: 1px solid var(--warm-gray-dark);
}

.community-entry__icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: var(--radius-sm);
}

.community-entry__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.community-entry__body {
    display: grid;
    min-width: 0;
}

.community-entry__kicker {
    margin-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.community-entry__label {
    font-family: var(--font-heading);
    color: var(--plum);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
}

.community-entry__arrow {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--warm-gray);
    transition: background-color var(--transition), transform var(--transition);
}

.community-entry__arrow::before {
    content: '';
    display: block;
    width: 0.65rem;
    height: 0.65rem;
    margin: 0.87rem auto 0;
    border-top: 2px solid var(--plum);
    border-right: 2px solid var(--plum);
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.community-entry__link:hover .community-entry__arrow {
    background: var(--rose-pale);
    transform: translateX(4px);
}

@media (max-width: 820px) {
    .community-entry {
        max-width: none;
    }

    .community-entry__tiles {
        grid-template-columns: 1fr;
    }

    .community-entry__link {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 0;
        padding: var(--space-lg);
    }

    .community-entry__header h1 {
        font-size: 30px;
    }

    .community-entry__header p {
        font-size: 17px;
    }

    .community-entry__arrow {
        grid-column: 2;
        justify-self: end;
        margin-top: var(--space-sm);
    }
}

@media (max-width: 640px) {
    .community-entry__link {
        gap: var(--space-sm);
        padding: 1.25rem 3.4rem 1.25rem 1.25rem;
    }

    .community-entry__label {
        font-size: 22px;
    }

    .community-entry__arrow {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        grid-column: auto;
        width: 2rem;
        height: 2rem;
        margin-top: 0;
    }

    .community-entry__arrow::before {
        width: 0.55rem;
        height: 0.55rem;
        margin-top: 0.72rem;
    }
}

@media (max-width: 360px) {
    .community-entry__link {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .community-entry__icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .community-entry__arrow {
        grid-column: auto;
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .community-entry__link,
    .community-entry__arrow,
    .community-entry__arrow::before {
        transition: none;
    }

    .community-entry__link:hover,
    .community-entry__link:hover .community-entry__arrow {
        transform: none;
    }
}
