.rmpl-section-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    color: #101828;
}

.rmpl-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 18px 0;
}

.rmpl-menu-card {
    position: relative;
}

.rmpl-menu-card-inner {
    height: 100%;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rmpl-menu-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(16, 24, 40, 0.14);
}

.rmpl-menu-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: #fff;
    margin-bottom: 18px;
}

.rmpl-menu-icon svg {
    width: 26px;
    height: 26px;
}

.rmpl-menu-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #101828;
}

.rmpl-menu-text {
    margin: 0 0 18px;
    color: #475467;
    line-height: 1.6;
    flex-grow: 1;
}

.rmpl-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rmpl-menu-button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #fff;
}

.rmpl-menu-button.is-disabled {
    background: #e5e7eb;
    color: #667085;
    cursor: default;
}

.rmpl-empty-state {
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    color: #475467;
    border: 1px solid rgba(16, 24, 40, 0.08);
}
