:root {
    --bg: #f5f8f2;
    --surface: #ffffff;
    --surface-soft: #f0f6ef;
    --surface-strong: #e4efe3;
    --border: #d6e5d7;
    --border-strong: #bfd6c2;
    --text: #153021;
    --muted: #5d7567;
    --muted-strong: #456252;
    --primary: #14532d;
    --primary-strong: #0e3c20;
    --primary-soft: #dff1e4;
    --accent: #1f7a43;
    --danger: #c24141;
    --warning-bg: #fff5db;
    --warning-border: #f2d28c;
    --shadow-lg: 0 28px 60px rgba(20, 83, 45, 0.12);
    --shadow-md: 0 18px 34px rgba(20, 83, 45, 0.08);
    --shadow-sm: 0 8px 18px rgba(20, 83, 45, 0.06);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --sidebar-width: 288px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(31, 122, 67, 0.12), transparent 28%),
        linear-gradient(180deg, #f7fbf6 0%, #f3f8f1 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.block {
    display: block;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.w-3\/4 {
    width: 75%;
}

.max-w-7xl {
    max-width: 1440px;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.shrink-0 {
    flex-shrink: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-5 > * + * {
    margin-top: 1.25rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.text-xs {
    font-size: 0.72rem;
}

.text-sm {
    font-size: 0.92rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.28rem;
}

.text-2xl {
    font-size: 1.6rem;
}

.text-3xl {
    font-size: 2rem;
}

.text-4xl {
    font-size: 2.5rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.leading-tight {
    line-height: 1.15;
}

.leading-7 {
    line-height: 1.75;
}

.tracking-\[0\.16em\] {
    letter-spacing: 0.16em;
}

.tracking-\[0\.18em\] {
    letter-spacing: 0.18em;
}

.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

.tracking-\[0\.24em\] {
    letter-spacing: 0.24em;
}

.text-white {
    color: #ffffff;
}

.text-slate-900,
.text-gray-900 {
    color: var(--text);
}

.text-slate-700,
.text-gray-800,
.text-gray-700 {
    color: var(--muted-strong);
}

.text-slate-600,
.text-gray-600 {
    color: var(--muted);
}

.text-slate-500,
.text-gray-500,
.text-gray-400 {
    color: #6d8176;
}

.text-emerald-800 {
    color: var(--primary);
}

.text-emerald-700 {
    color: #1a6a39;
}

.text-emerald-100 {
    color: rgba(235, 250, 240, 0.9);
}

.text-emerald-50\/90 {
    color: rgba(246, 255, 248, 0.9);
}

.text-green-600 {
    color: var(--accent);
}

.text-red-600 {
    color: var(--danger);
}

.bg-white {
    background: var(--surface);
}

.bg-slate-50,
.bg-gray-50 {
    background: var(--surface-soft);
}

.bg-amber-50 {
    background: var(--warning-bg);
}

.bg-gray-800 {
    background: var(--primary);
}

.bg-red-600 {
    background: var(--danger);
}

.bg-white\/10 {
    background: rgba(255, 255, 255, 0.1);
}

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

.border-slate-200,
.border-gray-100,
.border-gray-300 {
    border-color: var(--border);
}

.border-amber-200 {
    border-color: var(--warning-border);
}

.border-transparent {
    border-color: transparent;
}

.border-dashed {
    border-style: dashed;
}

.rounded-md {
    border-radius: 14px;
}

.rounded {
    border-radius: 12px;
}

.rounded-lg {
    border-radius: 18px;
}

.rounded-2xl {
    border-radius: var(--radius-md);
}

.shadow,
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.uppercase {
    text-transform: uppercase;
}

.shell-card,
.stat-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(191, 214, 194, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
}

.shell-card-soft {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.15rem;
}

.hero-badge,
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #f6fff8;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-pill {
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(20, 83, 45, 0.1);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    backdrop-filter: blur(10px);
}

.section-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.section-copy {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.field-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-strong);
}

.text-field,
.select-field,
.textarea-field,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="number"],
input[type="file"],
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fcfefd;
    color: var(--text);
    padding: 0.9rem 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.textarea-field,
textarea {
    min-height: 118px;
    resize: vertical;
}

.text-field:focus,
.select-field:focus,
.textarea-field:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #75ad86;
    box-shadow: 0 0 0 4px rgba(31, 122, 67, 0.14);
}

input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    border: 1px solid var(--border-strong);
    accent-color: var(--primary);
}

.primary-action,
.secondary-action,
.danger-action,
.inline-flex.items-center.px-4.py-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.78rem 1.2rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action,
button.bg-gray-800 {
    background: linear-gradient(135deg, var(--primary) 0%, #1f6f3d 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 83, 45, 0.2);
}

.secondary-action,
button.bg-white {
    background: var(--surface);
    border-color: var(--border-strong);
    color: var(--primary);
}

.danger-action,
button.bg-red-600 {
    background: #b73c3c;
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(183, 60, 60, 0.18);
}

.primary-action:hover,
.secondary-action:hover,
.danger-action:hover,
button.bg-white:hover,
button.bg-gray-800:hover,
button.bg-red-600:hover {
    transform: translateY(-1px);
}

.app-shell {
    min-height: 100vh;
}

.app-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 24, 15, 0.45);
    z-index: 30;
}

.app-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(var(--sidebar-width), calc(100vw - 2rem));
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    border-right: 1px solid rgba(191, 214, 194, 0.9);
    box-shadow: var(--shadow-lg);
    z-index: 40;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.28s ease;
}

.app-sidebar.is-open {
    transform: translateX(0);
}

.app-sidebar__top,
.app-header__bar,
.landing-header,
.guest-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.app-brand,
.guest-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, var(--primary) 0%, #1d6a3b 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(20, 83, 45, 0.22);
}

.brand-text__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.brand-text__title {
    margin: 0.2rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted-strong);
}

.sidebar-profile {
    margin-top: 1.75rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, #f8fcf8 0%, #ecf5ec 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.sidebar-profile__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6e8274;
}

.sidebar-profile__name {
    margin: 0.75rem 0 0;
    font-size: 1.02rem;
    font-weight: 700;
}

.sidebar-profile__role {
    margin: 0.2rem 0 0;
    color: var(--muted);
}

.sidebar-nav {
    margin-top: 1.8rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    min-height: 0;
    padding: 0.8rem 0.9rem;
    border-radius: 1.1rem;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    color: var(--muted-strong);
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-link:hover {
    background: #edf6ef;
    color: var(--primary);
    transform: translateX(2px);
}

.sidebar-link-active {
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.12), rgba(31, 122, 67, 0.06));
    color: var(--primary);
    border: 1px solid rgba(20, 83, 45, 0.08);
}

.sidebar-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 1rem;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sidebar-secondary {
    margin-top: 1.75rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}

.app-workspace {
    min-height: 100vh;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(247, 251, 246, 0.82);
    border-bottom: 1px solid rgba(191, 214, 194, 0.7);
}

.app-header__bar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.app-header__title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.app-header__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.app-header__heading {
    margin: 0.2rem 0 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.app-user-badge {
    display: none;
    padding: 0.85rem 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    background: rgba(223, 241, 228, 0.6);
}

.app-user-badge__label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6e8274;
}

.app-user-badge__value {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    color: var(--muted-strong);
}

.app-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.4rem 1rem 2rem;
}

.guest-shell,
.landing-shell {
    min-height: 100vh;
    padding: 1.25rem;
}

.guest-grid,
.landing-layout,
.dashboard-hero-grid,
.dashboard-content-grid {
    display: grid;
    gap: 1.5rem;
}

.guest-grid {
    max-width: 1320px;
    margin: 0 auto;
    align-items: center;
}

.guest-showcase {
    background:
        radial-gradient(circle at top right, rgba(31, 122, 67, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #eff7ef 100%);
}

.guest-showcase__eyebrow,
.landing-kicker {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.guest-showcase__title,
.landing-hero__title {
    margin: 1rem 0 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.06;
}

.guest-showcase__copy,
.landing-hero__copy {
    margin: 1rem 0 0;
    max-width: 40rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.guest-feature-grid,
.landing-card-grid,
.credential-grid,
.summary-grid {
    display: grid;
    gap: 1rem;
}

.guest-panel {
    width: 100%;
}

.landing-shell {
    max-width: 1440px;
    margin: 0 auto;
}

.landing-header {
    padding: 0.35rem 0 1.3rem;
}

.landing-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.landing-layout {
    align-items: start;
}

.landing-hero {
    background:
        radial-gradient(circle at top right, rgba(113, 191, 139, 0.22), transparent 30%),
        linear-gradient(145deg, #123c23 0%, #14532d 44%, #1d6a3b 100%);
    color: #ffffff;
}

.landing-hero__stats {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-stat {
    padding: 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-stat__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.landing-stat__copy {
    margin: 0.6rem 0 0;
    color: rgba(245, 255, 248, 0.88);
    line-height: 1.7;
}

.landing-side {
    display: grid;
    gap: 1.5rem;
}

.credential-card {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf4 100%);
}

.credential-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.credential-item {
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid var(--border);
    background: #fbfefb;
}

.credential-item strong {
    display: block;
    margin-bottom: 0.35rem;
}

.credential-item span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.landing-list {
    display: grid;
    gap: 1rem;
}

.landing-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    background: #fbfefb;
}

.landing-step__index {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary) 0%, #1f6f3d 100%);
    color: #ffffff;
    font-weight: 800;
}

.landing-preview-grid {
    display: grid;
    gap: 1rem;
}

.dashboard-hero {
    background:
        radial-gradient(circle at top right, rgba(113, 191, 139, 0.18), transparent 35%),
        linear-gradient(145deg, #123c23 0%, #14532d 42%, #1c6b3b 100%);
    color: #ffffff;
}

.page-stack > * + * {
    margin-top: 1.5rem;
}

.alert-banner {
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    border: 1px solid #b8dec3;
    background: #e9f7ed;
    color: var(--primary);
    font-weight: 600;
}

.rounded-2xl.border.bg-slate-50,
.rounded-2xl.border.bg-gray-50,
.rounded-2xl.border.border-slate-200.bg-slate-50,
.rounded-2xl.border.border-gray-300.bg-white,
.rounded-2xl.border.border-amber-200.bg-amber-50 {
    border-radius: 18px;
}

@media (max-width: 1023.98px) {
    [x-cloak] {
        display: none !important;
    }
}

@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:p-8 {
        padding: 2rem;
    }

    .sm\:rounded-lg {
        border-radius: 18px;
    }

    .sm\:text-4xl {
        font-size: 2.5rem;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:items-center {
        align-items: center;
    }

    .sm\:justify-between {
        justify-content: space-between;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .guest-feature-grid,
    .credential-grid,
    .landing-hero__stats,
    .summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none !important;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .app-sidebar {
        transform: translateX(0);
    }

    .app-workspace {
        padding-left: var(--sidebar-width);
    }

    .app-header__bar,
    .app-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .app-user-badge {
        display: block;
    }

    .guest-grid,
    .landing-layout,
    .dashboard-hero-grid,
    .dashboard-content-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    }

    .landing-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (min-width: 1280px) {
    .xl\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xl\:col-span-3 {
        grid-column: span 3 / span 3;
    }
}
