.portal-home {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.portal-home-heading h1,
.dashboard-welcome-card h1 {
    margin: 0;
}

.portal-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.portal-season-label,
.home-area-context,
.dashboard-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.featured-event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.featured-event-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.featured-event-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(0 0 0 / 10%);
}

.featured-event-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 1rem;
    background: #fff;
}

.featured-event-logo {
    display: block;
    width: 100%;
    max-width: 180px;
    max-height: 115px;
    object-fit: contain;
}

.featured-event-details {
    padding: 0.75rem;
    text-align: center;
    border-top: 1px solid var(--border-color, #dfe3e8);
}

.featured-event-details h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.featured-event-location,
.featured-event-date {
    margin: 0.2rem 0;
    font-size: 0.86rem;
}

.portal-account-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.producer-logo-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.producer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    min-height: 90px;
    padding: 0.75rem;
}

.producer-logo {
    display: block;
    width: 100%;
    max-width: 120px;
    max-height: 75px;
    object-fit: contain;
}

.dashboard-welcome-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
}

.dashboard-welcome-card p {
    margin: 0.35rem 0 0;
}

.dashboard-eyebrow {
    margin: 0 0 0.35rem !important;
    color: #4b5563;
}

.dashboard-context {
    min-width: 210px;
    padding-left: 1.25rem;
    border-left: 1px solid var(--border-color, #dfe3e8);
    text-align: right;
}

.dashboard-context span,
.dashboard-context strong {
    display: block;
}

.dashboard-context span {
    color: #667085;
    font-size: 0.82rem;
}

.dashboard-section {
    display: grid;
    gap: 0.8rem;
}

.dashboard-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-section-header h2,
.dashboard-support-section h2 {
    margin: 0;
}

.dashboard-section-header p {
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
}

.attention-list {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
}

.attention-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color, #dfe3e8);
}

.attention-item:last-child {
    border-bottom: 0;
}

.attention-item:hover {
    background: #f8fafc;
    text-decoration: none;
}

.attention-badge {
    display: inline-flex;
    justify-content: center;
    padding: 0.42rem 0.55rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
}

.attention-action .attention-badge {
    color: #9b1c1c;
    background: #fee2e2;
}

.attention-due .attention-badge {
    color: #8a5b00;
    background: #fef3c7;
}

.attention-new .attention-badge {
    color: #0f766e;
    background: #ccfbf1;
}

.attention-copy strong,
.attention-copy small {
    display: block;
}

.attention-copy small {
    margin-top: 0.18rem;
    color: #667085;
}

.attention-destination {
    color: #475467;
    font-size: 0.88rem;
    white-space: nowrap;
}

.home-area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-area-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.85rem;
    min-height: 145px;
    padding: 1rem;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-area-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(0 0 0 / 8%);
}

.home-area-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #0b075e;
    border-radius: 9px;
}

.home-area-copy h3 {
    margin: 0;
}

.home-area-copy p {
    margin: 0.55rem 0 0;
    color: #667085;
    font-size: 0.9rem;
}

.home-area-context {
    display: block;
    margin-top: 0.28rem;
    color: #667085;
}

.home-area-arrow {
    margin-top: 0.65rem;
    color: #98a2b3;
}

.dashboard-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.dashboard-panel {
    align-content: start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
}

.upcoming-list,
.room-update-list {
    display: grid;
}

.upcoming-item,
.room-update-item {
    display: grid;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.upcoming-item:last-child,
.room-update-item:last-child {
    border-bottom: 0;
}

.upcoming-item {
    grid-template-columns: 54px minmax(0, 1fr);
}

.upcoming-item time {
    display: grid;
    place-items: center;
    min-height: 54px;
    background: #f2f4f7;
    border-radius: 8px;
}

.upcoming-item time span {
    font-size: 0.72rem;
    text-transform: uppercase;
}

.upcoming-item time strong {
    font-size: 1.2rem;
}

.upcoming-copy small,
.upcoming-copy strong,
.upcoming-copy span,
.room-update-item strong,
.room-update-item small {
    display: block;
}

.upcoming-copy small,
.room-update-item small {
    color: #667085;
}

.upcoming-copy span {
    margin-top: 0.15rem;
    font-size: 0.86rem;
}

.room-update-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.room-update-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #0b075e;
    background: #eef2ff;
    border-radius: 8px;
}

.dashboard-empty-state {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
}

.dashboard-empty-state i {
    color: #16803c;
    font-size: 1.35rem;
}

.dashboard-empty-state strong,
.dashboard-empty-state span {
    display: block;
}

.dashboard-empty-state span,
.dashboard-panel-empty {
    color: #667085;
}

.dashboard-support-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border-color, #dfe3e8);
    border-radius: 10px;
}

.dashboard-support-section p {
    margin: 0.3rem 0 0;
}

.status-badge {
    display: inline-flex;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-pending {
    color: #8a5b00;
    background: #fef3c7;
}

@media (max-width: 1000px) {
    .featured-event-grid,
    .home-area-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .dashboard-welcome-card,
    .dashboard-section-header,
    .dashboard-support-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-context {
        width: 100%;
        padding: 0.8rem 0 0;
        border-top: 1px solid var(--border-color, #dfe3e8);
        border-left: 0;
        text-align: left;
    }

    .featured-event-grid,
    .home-area-grid,
    .dashboard-two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .attention-item {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .attention-destination {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .featured-event-grid,
    .home-area-grid,
    .dashboard-two-column {
        grid-template-columns: 1fr;
    }

    .portal-account-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .portal-account-actions .btn {
        width: 100%;
        text-align: center;
    }

    .attention-item {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .attention-badge {
        justify-self: start;
    }

    .attention-destination {
        grid-column: auto;
    }
}
