.lmc-ideas-box-section {
    position: relative;
    z-index: 6;
    margin-top: 0;
    padding-bottom: 90px;
}

.lmc-ideas-content {
    min-width: 0;
    max-height: 760px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 44px;
    scrollbar-width: thin;
    scrollbar-color: rgba(154,92,255,.55) rgba(255,255,255,.06);
}

.lmc-ideas-content::-webkit-scrollbar {
    width: 8px;
}

.lmc-ideas-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,.06);
}

.lmc-ideas-content::-webkit-scrollbar-thumb {
    background: rgba(154,92,255,.55);
}

.lmc-ideas-panel {
    display: none;
}

.lmc-ideas-panel.is-active {
    display: block;
}

.lmc-ideas-panel h2 {
    margin: 0 0 14px;
    font-family: var(--lm-head);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.lmc-panel-intro {
    max-width: 760px;
    margin: 0 0 34px;
    color: #d2cad8;
    font-size: 16px;
    line-height: 1.75;
}

.lmc-idea-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.lmc-idea-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    border: 1px solid rgba(255,255,255,.08);
    padding: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.48));
    box-shadow: 0 18px 60px rgba(0,0,0,.28), 0 0 24px rgba(154,92,255,.08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lmc-idea-card:hover {
    transform: translateY(-3px);
    border-color: rgba(154,92,255,.34);
    box-shadow: 0 22px 70px rgba(0,0,0,.36), 0 0 32px rgba(154,92,255,.16);
}

.lmc-idea-card.is-hidden {
    display: none;
}

.lmc-idea-card.is-graveyard {
    background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.62));
}

.lmc-idea-card.is-written {
    border-color: rgba(154,92,255,.45);
    box-shadow: 0 22px 80px rgba(0,0,0,.34), 0 0 38px rgba(154,92,255,.18);
}

.lmc-idea-status {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 16px;
    border: 1px solid rgba(154,92,255,.36);
    padding: 7px 12px;
    color: var(--lm-accent-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lmc-idea-card h3 {
    margin: 0 0 14px;
    font-family: var(--lm-head);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.08;
}

.lmc-idea-text {
    margin: 0 0 24px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.65;
}

.lmc-idea-text p {
    margin: 0 0 14px;
}

.lmc-idea-text p:last-child {
    margin-bottom: 0;
}

.lmc-vote-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.lmc-vote-button,
.lmc-glow-button,
.lmc-load-more-ideas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(154,92,255,.42);
    padding: 0 16px;
    background: linear-gradient(180deg, rgba(154,92,255,.16), rgba(154,92,255,.05));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(154,92,255,.12);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.lmc-vote-button:hover,
.lmc-glow-button:hover,
.lmc-load-more-ideas:hover {
    transform: translateY(-2px);
    border-color: rgba(154,92,255,.75);
    box-shadow: 0 0 22px rgba(154,92,255,.28), inset 0 0 14px rgba(154,92,255,.08);
}

.lmc-vote-button em {
    font-style: normal;
    color: var(--lm-accent-2);
}

.lmc-vote-button.is-selected {
    border-color: rgba(255,255,255,.76);
    box-shadow: 0 0 26px rgba(154,92,255,.34), inset 0 0 18px rgba(154,92,255,.12);
}

.lmc-vote-row.is-loading {
    opacity: .55;
    pointer-events: none;
}

.lmc-vote-row.has-voted .lmc-vote-button:not(.is-selected) {
    opacity: .55;
}

.lmc-glow-button {
    align-self: flex-start;
    margin-top: auto;
}

.lmc-load-more-ideas {
    margin: 32px auto 0;
    padding-inline: 22px;
}

.lmc-load-more-ideas.is-hidden {
    display: none;
}

.lmc-ideas-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--lm-muted);
}

@media (max-width: 900px) {
    .lmc-ideas-box {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .lmc-ideas-content {
        max-height: 720px;
        padding: 30px 24px;
    }

    .lmc-ideas-tabs {
    overflow-x: auto;
}

.lmc-ideas-tabs button {
    flex: 0 0 auto;
    min-width: 170px;
}

    .lmc-idea-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .lmc-ideas-box-section {
        margin-top: -40px;
    }

    .lmc-vote-button,
    .lmc-glow-button,
    .lmc-load-more-ideas {
        width: 100%;
    }
}


.lmc-ideas-box {
    display: flex;
    flex-direction: column;

    min-height: 560px;
    max-height: 760px;

    border: 1px solid var(--lm-line);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 24px 90px rgba(0,0,0,.42),
        0 0 38px rgba(154,92,255,.12);

    backdrop-filter: blur(10px);

    overflow: hidden;
}

.lmc-ideas-tabs {
    order: -1;

    display: flex;
    align-items: stretch;

    border-bottom: 1px solid var(--lm-line);

    background: rgba(0,0,0,.24);
}

.lmc-ideas-tabs button {
    flex: 1;

    min-height: 68px;

    border: 0;
    border-right: 1px solid var(--lm-line);

    background: transparent;

    padding: 18px 22px;

    color: rgba(255,255,255,.62);

    font-size: 11pt;
    font-weight: 700;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.lmc-ideas-tabs button:last-child {
    border-right: 0;
}

.lmc-ideas-tabs button:hover,
.lmc-ideas-tabs button.is-active {
    color: #fff;

    background:
        linear-gradient(
            180deg,
            rgba(154,92,255,.16),
            rgba(154,92,255,.04)
        );

    box-shadow:
        inset 0 -4px 0 var(--lm-accent),
        0 0 24px rgba(154,92,255,.12);
}