:root {
    --cream: #f8f4ed;
    --sand: #eee6d9;

    --charcoal: #292924;

    --sage: #75806f;
    --sage-dark: #5f6959;

    --gold: #c4a978;

    --white: #ffffff;

    --border: #ddd5c8;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    min-height: 100%;
}


body {
    margin: 0;

    min-height: 100vh;

    background: var(--cream);

    color: var(--charcoal);

    font-family: var(--sans);
}


/* =========================================================
   LOGIN
========================================================= */

.login-page {
    display: flex;

    min-height: 100svh;

    background:
        linear-gradient(135deg,
            #f7f1e8 0%,
            #ede5d8 100%);
}


.login-shell {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 30px 20px;
}


.login-card {
    width: min(520px, 100%);

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

    background: rgba(255, 255, 255, 0.6);

    padding: 60px 55px;

    text-align: center;

    box-shadow:
        0 30px 90px rgba(40, 38, 32, 0.08);
}


.login-monogram {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 82px;

    margin: 0 auto 30px;

    border: 1px solid var(--sage);
    border-radius: 50%;

    color: var(--sage-dark);

    font-family: var(--serif);

    font-size: 27px;
}


.login-monogram span {
    margin: 0 5px;

    color: var(--gold);

    font-style: italic;
}


.login-kicker,
.dashboard-kicker {
    margin: 0 0 12px;

    color: var(--sage-dark);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


.login-card h1 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(48px, 7vw, 67px);
    font-weight: 400;

    line-height: 0.95;
}


.login-intro {
    margin: 20px 0 35px;

    color: #77736b;

    font-size: 13px;

    line-height: 1.8;
}


.admin-login-name {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;

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

    padding: 15px 0;
}


.admin-login-name span,
.admin-form-group label {
    color: #77736b;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.admin-login-name strong {
    font-family: var(--serif);

    font-size: 22px;
    font-weight: 500;
}


.admin-form-group {
    text-align: left;
}


.admin-form-group label {
    display: block;

    margin-bottom: 8px;
}


.admin-form-group input {
    width: 100%;

    border: 0;
    border-bottom: 1px solid #aaa498;

    border-radius: 0;

    background: transparent;

    padding: 13px 0;

    outline: none;

    font-family: var(--serif);

    font-size: 22px;
}


.admin-form-group input:focus {
    border-color: var(--sage-dark);
}


.admin-button {
    width: 100%;

    margin-top: 35px;

    border: 0;

    background: var(--sage-dark);

    color: var(--white);

    padding: 17px 25px;

    cursor: pointer;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}


.login-error {
    margin-bottom: 25px;

    border: 1px solid #c89d95;

    background: #f5e4e1;

    color: #82483f;

    padding: 13px 15px;

    font-size: 12px;

    line-height: 1.6;
}


.login-footer {
    margin: 35px 0 0;

    color: #918b82;

    font-family: var(--serif);

    font-size: 17px;
}


.login-footer span {
    margin: 0 7px;

    color: var(--sage-dark);
}


/* =========================================================
   HEADER
========================================================= */

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 76px;

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

    background: rgba(248, 244, 237, 0.94);

    padding: 0 5vw;
}


.admin-header>div {
    display: flex;
    align-items: center;

    gap: 20px;
}


.admin-logo {
    font-family: var(--serif);

    color: var(--sage-dark);

    font-size: 26px;
}


.admin-header-title {
    color: #78746c;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.logout-button {
    border: 0;

    background: transparent;

    color: #66635d;

    cursor: pointer;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-main {
    width: min(1450px, 92%);

    margin: 0 auto;

    padding: 75px 0 100px;
}


.dashboard-intro {
    margin-bottom: 55px;
}


.dashboard-intro h1 {
    margin: 0;

    font-family: var(--serif);

    font-size: clamp(58px, 7vw, 92px);
    font-weight: 400;

    line-height: 0.9;
}


.dashboard-intro>p:last-child {
    max-width: 600px;

    margin: 22px 0 0;

    color: #747068;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin-bottom: 55px;
}


.stat-card {
    min-height: 170px;

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

    background: rgba(255, 255, 255, 0.48);

    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.stat-card--green {
    background: var(--sage-dark);

    color: var(--white);
}


.stat-number {
    font-family: var(--serif);

    font-size: 60px;

    line-height: 1;
}


.stat-label {
    color: #7d786f;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.stat-card--green .stat-label {
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   PANEL
========================================================= */

.rsvp-panel {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.45);
}


.panel-heading {
    padding: 30px 32px;

    border-bottom: 1px solid var(--border);
}


.panel-heading h2 {
    margin: 0;

    font-family: var(--serif);

    font-size: 39px;
    font-weight: 400;
}


/* =========================================================
   TABLE
========================================================= */

.rsvp-table-wrap {
    width: 100%;

    overflow-x: auto;
}


.rsvp-table {
    width: 100%;

    border-collapse: collapse;
}


.rsvp-table th {
    color: #858178;

    padding: 18px 25px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-align: left;

    text-transform: uppercase;
}


.rsvp-table td {
    border-top: 1px solid var(--border);

    padding: 22px 25px;

    vertical-align: middle;

    font-size: 12px;
}


.rsvp-table td strong {
    display: block;

    margin-bottom: 4px;

    font-family: var(--serif);

    font-size: 20px;
    font-weight: 500;
}


.guest-email {
    color: #8d887f;

    font-size: 10px;
}


.status-pill {
    display: inline-flex;

    border-radius: 100px;

    padding: 7px 12px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.status-pill--yes {
    background: #e2e9df;

    color: #51604c;
}


.status-pill--no {
    background: #efe1df;

    color: #825a54;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.empty-state {
    padding: 85px 25px;

    text-align: center;
}


.empty-state>span {
    color: var(--sage);

    font-size: 23px;
}


.empty-state h3 {
    margin: 15px 0 5px;

    font-family: var(--serif);

    font-size: 31px;
    font-weight: 400;
}


.empty-state p {
    color: #89857d;

    font-size: 11px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 950px) {

    .dashboard-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .login-card {
        padding: 45px 25px;
    }


    .admin-header {
        padding: 0 20px;
    }


    .admin-header-title {
        display: none;
    }


    .dashboard-main {
        width: calc(100% - 32px);

        padding-top: 55px;
    }


    .dashboard-stats {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }


    .stat-card {
        min-height: 140px;

        padding: 22px 18px;
    }


    .stat-number {
        font-size: 49px;
    }


    .rsvp-table th,
    .rsvp-table td {
        padding-left: 16px;
        padding-right: 16px;
    }

}
/* =========================================================
   DASHBOARD V2 - NAVIGATION
========================================================= */

.admin-header {
    position: sticky;
    top: 0;
    z-index: 50;

    backdrop-filter: blur(18px);
}

.admin-header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-logo {
    text-decoration: none;
}

.admin-header-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
    margin-right: 34px;
}

.admin-header-nav a {
    color: #77736b;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.admin-header-nav a:hover {
    color: var(--sage-dark);
}

/* =========================================================
   DASHBOARD INTRO V2
========================================================= */

.dashboard-intro--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.dashboard-intro--split > div:first-child {
    flex: 1;
}

.dashboard-intro-note {
    min-width: 260px;

    border-left: 1px solid var(--border);

    padding: 15px 0 15px 30px;
}

.dashboard-intro-note span,
.table-label,
.detail-contact-card > span,
.party-dietary > span,
.detail-summary-card > span {
    display: block;

    color: #8b867d;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.dashboard-intro-note strong {
    display: block;

    margin-top: 7px;

    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
}

.dashboard-intro-note p {
    margin: 4px 0 0;

    color: #87827a;

    font-size: 10px;
}

/* =========================================================
   SEARCH / TOOLS
========================================================= */

.dashboard-tools {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 26px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    padding: 24px 0;
}

.dashboard-search {
    width: min(700px, 100%);
}

.dashboard-search > label {
    display: block;

    margin-bottom: 9px;

    color: #7d786f;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.dashboard-search-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.dashboard-search input {
    flex: 1;
    min-width: 0;

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

    background: rgba(255, 255, 255, 0.55);

    color: var(--charcoal);

    padding: 13px 15px;

    outline: none;

    font-family: var(--sans);
    font-size: 11px;
}

.dashboard-search input:focus {
    border-color: var(--sage);
}

.dashboard-search button,
.search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: var(--sage-dark);

    color: var(--white);

    padding: 0 20px;

    cursor: pointer;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;

    text-decoration: none;
    text-transform: uppercase;
}

.search-clear {
    border: 1px solid var(--border);

    background: transparent;

    color: #77736b;
}

.dashboard-jump-links {
    display: flex;
    align-items: center;
    gap: 18px;

    white-space: nowrap;
}

.dashboard-jump-links a {
    color: var(--sage-dark);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    padding-bottom: 4px;
}

.dashboard-jump-links a:hover {
    border-color: var(--sage-dark);
}

.search-summary {
    margin-bottom: 25px;

    background: #eee8dd;

    padding: 14px 18px;

    color: #706b63;

    font-size: 10px;
    line-height: 1.7;
}

/* =========================================================
   PANELS V2
========================================================= */

.dashboard-section-gap {
    margin-top: 30px;
}

.panel-heading--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.panel-description {
    max-width: 650px;

    margin: 11px 0 0;

    color: #837f77;

    font-size: 10px;
    line-height: 1.7;
}

.panel-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    min-height: 78px;

    background: var(--sage-dark);

    color: var(--white);

    padding: 12px;
}

.panel-count strong {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.panel-count span {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.panel-count--muted {
    border: 1px solid var(--border);

    background: transparent;

    color: var(--charcoal);
}

.panel-count--muted span {
    color: #89847b;
}

/* =========================================================
   TABLE V2
========================================================= */

.rsvp-table tbody tr {
    transition: background 0.2s ease;
}

.rsvp-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.42);
}

.rsvp-table--people th:nth-child(1) {
    width: 22%;
}

.rsvp-table--people th:nth-child(2) {
    width: 27%;
}

.rsvp-table--people th:nth-child(3) {
    width: 27%;
}

.guest-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tiny-badge {
    display: inline-flex;
    align-items: center;

    border: 1px solid #ccd6c9;
    border-radius: 100px;

    background: #edf2eb;

    color: #566151;

    padding: 4px 7px;

    font-size: 6px;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.table-value {
    display: block;

    margin-top: 5px;

    font-family: var(--serif);
    font-size: 16px;
}

.guest-email {
    display: block;

    margin-top: 4px;

    color: #8d887f;

    font-size: 9px;

    text-decoration: none;
}

.guest-email:hover {
    color: var(--sage-dark);
}

.dietary-note {
    display: inline-flex;

    color: #77736a;

    font-size: 10px;
    line-height: 1.5;
}

.dietary-note--important {
    border-left: 2px solid #a47669;

    color: #7d4f46;

    padding-left: 9px;

    font-weight: 500;
}

.table-action-cell {
    text-align: right;
}

.view-link {
    display: inline-flex;
    align-items: center;

    border-bottom: 1px solid var(--sage);

    color: var(--sage-dark);

    padding-bottom: 3px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;
}

.message-preview {
    display: block;

    max-width: 460px;

    color: #635f58;

    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

.muted-text {
    color: #969087;

    font-size: 10px;
}

.empty-state--small {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* =========================================================
   ALL RSVP CARDS
========================================================= */

.rsvp-list-cards {
    display: grid;
}

.rsvp-list-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;

    border-top: 1px solid var(--border);

    color: inherit;

    padding: 24px 30px;

    text-decoration: none;

    transition: background 0.2s ease;
}

.rsvp-list-card:first-child {
    border-top: 0;
}

.rsvp-list-card:hover {
    background: rgba(255, 255, 255, 0.48);
}

.rsvp-list-card-main h3 {
    margin: 12px 0 3px;

    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
}

.rsvp-list-card-main p {
    margin: 0;

    color: #8b867e;

    font-size: 9px;
}

.rsvp-list-card-meta {
    display: flex;
    align-items: center;
    gap: 36px;
}

.rsvp-list-card-meta > div {
    min-width: 100px;
}

.rsvp-list-card-meta span:not(.rsvp-card-arrow) {
    display: block;

    margin-bottom: 5px;

    color: #969087;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.rsvp-list-card-meta strong {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
}

.rsvp-card-arrow {
    color: var(--sage-dark);

    font-family: var(--serif);
    font-size: 27px;
}

.dashboard-footnote {
    margin-top: 28px;

    border-left: 2px solid var(--gold);

    padding: 10px 0 10px 18px;
}

.dashboard-footnote p {
    margin: 0;

    color: #817c73;

    font-size: 10px;
    line-height: 1.7;
}

/* =========================================================
   RSVP DETAIL PAGE
========================================================= */

.detail-main {
    width: min(1280px, 92%);
}

.back-link {
    display: inline-flex;

    margin-bottom: 35px;

    color: #79746c;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover {
    color: var(--sage-dark);
}

.detail-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 38px;
}

.detail-hero h1 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 92px);
    font-weight: 400;
    line-height: 0.92;
}

.detail-status-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 24px;
}

.status-pill--large {
    padding: 8px 13px;
}

.detail-response-date {
    color: #8a857d;

    font-size: 9px;
}

.detail-contact-card {
    min-width: 310px;

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

    background: rgba(255, 255, 255, 0.42);

    padding: 24px;
}

.detail-contact-card a {
    display: block;

    margin-top: 9px;

    color: var(--charcoal);

    font-family: var(--serif);
    font-size: 20px;

    overflow-wrap: anywhere;
    text-decoration: none;
}

.detail-contact-card small {
    display: block;

    margin-top: 8px;

    color: #99938a;

    font-size: 8px;
}

.detail-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;

    margin-bottom: 30px;
}

.detail-summary-card {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.4);

    padding: 24px;
}

.detail-summary-card strong {
    display: block;

    margin-top: 10px;

    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
}

.detail-panel {
    margin-bottom: 30px;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    padding: 24px;
}

.party-person-card {
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.48);

    padding: 26px;
}

.party-person-card--dietary {
    border-color: #c9aaa2;

    background: #faf2ef;
}

.party-person-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.party-number {
    color: #8f8a81;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.party-person-card h3 {
    margin: 19px 0 24px;

    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;
}

.party-dietary {
    border-top: 1px solid var(--border);

    padding-top: 16px;
}

.party-dietary strong {
    display: block;

    margin-top: 7px;

    color: #625e57;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;
}

.party-dietary .dietary-important {
    color: #874f45;
}

.detail-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 30px;
}

.detail-two-column .detail-panel {
    margin-bottom: 0;
}

.detail-message-body {
    padding: 34px;
}

.detail-message-body blockquote {
    margin: 0;

    color: #5c5851;

    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 31px);
    font-style: italic;
    line-height: 1.5;
}

.detail-list {
    margin: 0;

    padding: 12px 30px 25px;
}

.detail-list > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;

    border-top: 1px solid var(--border);

    padding: 16px 0;
}

.detail-list > div:first-child {
    border-top: 0;
}

.detail-list dt {
    color: #8b867d;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.detail-list dd {
    margin: 0;

    color: #5f5b54;

    font-size: 10px;
    line-height: 1.6;
}

.detail-list dd a {
    color: var(--sage-dark);
    text-decoration: none;
}

.detail-bottom-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 32px;
}

.primary-link-button,
.secondary-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 20px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.13em;

    text-decoration: none;
    text-transform: uppercase;
}

.primary-link-button {
    background: var(--sage-dark);

    color: var(--white);
}

.secondary-link-button {
    border: 1px solid var(--border);

    color: #716d65;
}

.not-found-panel {
    max-width: 700px;
    margin: 40px auto 0;
}

.not-found-panel .empty-state h1 {
    margin: 12px 0 6px;

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
}

.not-found-panel .primary-link-button {
    margin-top: 20px;
}

/* =========================================================
   DASHBOARD V2 RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .admin-header-nav {
        display: none;
    }

    .dashboard-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-jump-links {
        flex-wrap: wrap;
    }

    .detail-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .detail-contact-card {
        min-width: 0;
    }

    .detail-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-two-column {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {

    .dashboard-intro--split {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
    }

    .dashboard-intro-note {
        min-width: 0;

        border-left: 0;
        border-top: 1px solid var(--border);

        padding: 20px 0 0;
    }

    .panel-heading--split {
        align-items: flex-start;
    }

    .panel-count {
        min-width: 74px;
        min-height: 68px;
    }

    .dashboard-search-row {
        flex-wrap: wrap;
    }

    .dashboard-search input {
        flex-basis: 100%;
    }

    .dashboard-search button,
    .search-clear {
        min-height: 42px;
    }

    .rsvp-list-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rsvp-list-card-meta {
        justify-content: space-between;
        gap: 15px;
    }

    .rsvp-list-card-meta > div {
        min-width: 0;
    }

    .party-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .admin-header {
        min-height: 66px;
    }

    .dashboard-main,
    .detail-main {
        width: calc(100% - 28px);
    }

    .dashboard-stats,
    .detail-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-stats {
        margin-bottom: 38px;
    }

    .panel-heading,
    .rsvp-list-card,
    .party-grid,
    .detail-message-body,
    .detail-list {
        padding-left: 18px;
        padding-right: 18px;
    }

    .panel-heading--split {
        gap: 15px;
    }

    .panel-heading h2 {
        font-size: 32px;
    }

    .panel-description {
        display: none;
    }

    .rsvp-table {
        min-width: 780px;
    }

    .detail-hero h1 {
        font-size: 56px;
    }

    .detail-bottom-actions {
        flex-direction: column-reverse;
    }

    .primary-link-button,
    .secondary-link-button {
        width: 100%;
    }

    .detail-list > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

}
