/*
 * style-exhibitor.css
 * Exhibitor-page-specific styles only.
 * All shared page styles live in style-pages.css.
 */

/* --------------------------------------------------
   PARTICIPATION INCLUDES SECTION
-------------------------------------------------- */
.rs-invest__header {
    margin-bottom: var(--ed-space-8);
}

.rs-invest__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ed-space-3);
    margin-bottom: var(--ed-space-6);
}

.rs-invest__item {
    display: flex;
    align-items: flex-start;
    gap: var(--ed-space-4);
    padding: var(--ed-space-4);
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--ed-duration) var(--ed-ease),
                box-shadow var(--ed-duration) var(--ed-ease);
}

.rs-invest__item--cta {
    background: rgba(219, 82, 15, 0.12);
    border: 1px solid rgba(219, 82, 15, 0.35);
    cursor: pointer;
}

.rs-invest__item--cta .rs-invest__icon  { background: rgba(219, 82, 15, 0.2); color: var(--ed-contrast); }
.rs-invest__item--cta .rs-invest__title { color: var(--ed-contrast); }

@media (hover: hover) {
    .rs-invest__item:hover {
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        text-decoration: none;
    }

    .rs-invest__item--cta:hover {
        background: rgba(219, 82, 15, 0.2);
        box-shadow: 0 8px 32px rgba(219, 82, 15, 0.2);
    }
}

.rs-invest__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ed-ink);
}

.rs-invest__text {
    display: flex;
    flex-direction: column;
    gap: var(--ed-space-1);
}

.rs-invest__title {
    font-family: var(--ed-font-title);
    font-size: var(--ed-text-base);
    font-weight: 600;
    color: var(--ed-ink);
    margin: 0;
    line-height: 1.2;
}

.rs-invest__body {
    font-size: var(--ed-text-xs);
    color: var(--ed-ink-muted);
    line-height: 1.65;
    margin: 0;
}

.rs-invest__caption {
    display: block;
    margin-top: var(--ed-space-6);
    font-size: var(--ed-text-xs);
    color: var(--ed-ink-muted);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .rs-invest__list  { grid-template-columns: 1fr 1fr; gap: var(--ed-space-4); }
    .rs-invest__item  { gap: var(--ed-space-6); padding: var(--ed-space-6); }
    .rs-invest__icon  { width: 52px; height: 52px; }
    .rs-invest__title { font-size: var(--ed-text-lg); }
    .rs-invest__body  { font-size: var(--ed-text-sm); }
}