.community-entry {
    background: transparent;
    margin: clamp(2rem, 5vw, 3.5rem) auto;
    max-width: 880px;
}

.community-entry__header {
    margin: 0 auto clamp(1.6rem, 4vw, 2.5rem);
    max-width: 680px;
    text-align: center;
}

.community-entry__eyebrow {
    background: var(--color-panel-alt);
    border-block: 1px solid #e8c7db;
    color: var(--color-brand);
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 1.7rem;
    padding: 0.9rem 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

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

.community-entry__header p:not(.community-entry__eyebrow) {
    color: #4b4548;
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.community-entry__tiles {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.community-entry__link {
    align-items: center;
    background: linear-gradient(145deg, #fff, #fbf8f5);
    border: 1px solid #e1dad7;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(44, 44, 42, 0.08), 0 2px 8px rgba(44, 44, 42, 0.05);
    color: #2c2c2a;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    height: 100%;
    min-height: 156px;
    overflow: hidden;
    padding: clamp(1.6rem, 3.2vw, 2.35rem);
    position: relative;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.community-entry__link::before {
    background: #cf8bb3;
    content: "";
    inset: 0 auto 0 0;
    opacity: 0.9;
    position: absolute;
    width: 6px;
}

.community-entry__tile:nth-child(2) .community-entry__link::before {
    background: #9b8bd3;
}

.community-entry__link:hover {
    border-color: var(--color-mauve);
    box-shadow: 0 18px 42px rgba(44, 44, 42, 0.12), 0 3px 10px rgba(44, 44, 42, 0.06);
    color: #2c2c2a;
    transform: translateY(-2px);
}

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

.community-entry__icon {
    background: var(--color-paper);
    border: 1px solid #e1dad7;
    border-radius: 10px;
    color: var(--color-brand);
    display: inline-grid;
    height: 3.6rem;
    place-items: center;
    width: 3.6rem;
}

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

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

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

.community-entry__label {
    color: var(--color-brand);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.18;
}

.community-entry__arrow {
    background: #f0ecea;
    border-radius: 50%;
    height: 2.4rem;
    transition: background-color 180ms ease, transform 180ms ease;
    width: 2.4rem;
}

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

.community-entry__link:hover .community-entry__arrow {
    background: var(--color-panel-alt);
    transform: translateX(4px);
}

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

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

    .community-entry__link {
        gap: 1rem;
        min-height: 0;
        padding: 1.25rem 3.4rem 1.25rem 1.25rem;
    }

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

    .community-entry__header p:not(.community-entry__eyebrow) {
        font-size: 17px;
    }

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

    .community-entry__arrow {
        position: absolute;
        right: 1.25rem;
        top: 1.25rem;
    }

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

@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;
    }
}
