:root {
    --bg: #201915;
    --panel: #2b2b2b;
    --panel-2: #3b332b;
    --panel-3: #4a3626;
    --text: #e0d4b0;
    --muted: #b9a982;
    --gold: #ffd700;
    --border: #8b6f4e;
    --danger: #b94b4b;
    --success: #6fa66f;
    --shadow: rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 215, 0, .08), transparent 30%),
        linear-gradient(135deg, #17110f, var(--bg));
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: rgba(45, 31, 22, .95);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 6px 18px var(--shadow);
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
    font-size: 28px;
    letter-spacing: 1px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #1f1713;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.nav a {
    color: var(--text);
    padding: 8px 11px;
    border: 1px solid transparent;
    border-radius: 999px;
}

.nav a:hover {
    border-color: var(--border);
    background: rgba(255, 215, 0, .08);
    text-decoration: none;
}

.nav b {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    background: var(--danger);
    border-radius: 999px;
    color: white;
    font-size: 12px;
}

.page-shell {
    width: min(1180px, calc(100% - 28px));
    margin: 24px auto;
}

.footer {
    text-align: center;
    padding: 24px;
    color: var(--muted);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
}

.hero-panel,
.card {
    background: linear-gradient(180deg, rgba(74, 54, 38, .92), rgba(43, 43, 43, .95));
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 30px var(--shadow);
}

.hero-panel {
    padding: 36px;
    overflow: hidden;
    position: relative;
}

.hero-panel:before {
    content: "";
    position: absolute;
    inset: -80px -100px auto auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 215, 0, .14), transparent 60%);
}

.hero h1,
.page-title,
.card-title {
    font-family: MedievalSharp, cursive;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    margin: 0 0 12px;
}

.hero p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.feature {
    padding: 14px;
    border: 1px solid rgba(139, 111, 78, .65);
    border-radius: 14px;
    background: rgba(0, 0, 0, .15);
}

.card {
    padding: 20px;
    margin-bottom: 18px;
}

.card-title {
    margin-top: 0;
    font-size: 28px;
}

.form-stack {
    display: grid;
    gap: 12px;
}

label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 13px;
    background: #1f1713;
    color: var(--text);
    outline: none;
    font: inherit;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, .12);
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 15px;
    background: linear-gradient(180deg, #5d452e, #3f2d1f);
    color: var(--gold);
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

button:hover,
.button:hover {
    background: linear-gradient(180deg, #6b5036, #4a3626);
    text-decoration: none;
}

.button.secondary,
button.secondary {
    color: var(--text);
    background: rgba(0, 0, 0, .2);
}

.button.danger,
button.danger {
    color: white;
    background: #7d3030;
}

.flash {
    width: min(1180px, calc(100% - 28px));
    margin: 18px auto 0;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 215, 0, .1);
}

.flash-success {
    border-color: var(--success);
}

.flash-danger,
.flash-error {
    border-color: var(--danger);
}

.layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 280px;
    gap: 18px;
}

.sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}

.profile-mini {
    text-align: center;
}

.avatar {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: #15110f;
}

.avatar.large {
    width: 148px;
    height: 148px;
}

.avatar.tiny {
    width: 34px;
    height: 34px;
}

.muted {
    color: var(--muted);
}

.small {
    font-size: 13px;
}

.strong-link {
    font-weight: 800;
}

.feed-form textarea {
    min-height: 120px;
}

.post-head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.post-body {
    white-space: normal;
    line-height: 1.6;
    font-size: 16px;
}

.post-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin: 8px 0 12px;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(139, 111, 78, .45);
    border-bottom: 1px solid rgba(139, 111, 78, .45);
    padding: 10px 0;
}

.mini-button {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 13px;
}

.comments {
    margin-top: 12px;
}

.comment {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 111, 78, .25);
}

.comment p {
    margin: 4px 0 0;
}

.comment-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 12px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.member-card {
    display: flex;
    gap: 12px;
}

.profile-cover {
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px var(--shadow);
}

.profile-cover-inner {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.profile-name {
    margin: 0;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
    font-size: 46px;
}

.profile-html {
    padding: 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .18);
    border: 1px dashed var(--border);
    margin-top: 14px;
    line-height: 1.55;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.table-list {
    width: 100%;
    border-collapse: collapse;
}

.table-list th,
.table-list td {
    padding: 12px;
    border-bottom: 1px solid rgba(139, 111, 78, .45);
    text-align: left;
    vertical-align: top;
}

.thread {
    max-height: 620px;
    overflow-y: auto;
    padding-right: 5px;
}

.message {
    max-width: 78%;
    padding: 12px 14px;
    border-radius: 14px;
    margin: 8px 0;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(139, 111, 78, .55);
}

.message.mine {
    margin-left: auto;
    background: rgba(255, 215, 0, .09);
}

.empty {
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 950px) {
    .hero,
    .layout,
    .profile-cover-inner {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .feature-grid,
    .comment-form {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        padding: 24px;
    }

    .profile-name {
        font-size: 36px;
    }
}


/* TavernWall v2 upgrades */
.feed-layout {
    grid-template-columns: 260px minmax(0, 1fr);
}

.reaction-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 4px;
}

.reaction-row {
    flex-wrap: wrap;
    align-items: center;
}

.reaction-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
}

.reaction-button.active {
    color: #1f1713;
    background: linear-gradient(180deg, var(--gold), #c79320);
    border-color: var(--gold);
}

.profile-photo-editor {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(139, 111, 78, .55);
    border-radius: 16px;
    background: rgba(0, 0, 0, .12);
}

.camera-box {
    border: 1px dashed var(--border);
    border-radius: 16px;
    padding: 14px;
    background: rgba(0, 0, 0, .16);
}

.camera-box h3 {
    margin: 0 0 8px;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
}

.camera-preview {
    width: min(100%, 420px);
    min-height: 180px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #15110f;
    display: block;
    object-fit: cover;
}

.messenger-shell {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 18px;
}

.conversation-list {
    position: sticky;
    top: 88px;
    align-self: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    color: var(--text);
    border: 1px solid transparent;
    margin-bottom: 8px;
}

.contact-item:hover,
.contact-item.active {
    text-decoration: none;
    border-color: var(--border);
    background: rgba(255, 215, 0, .08);
}

.contact-item small {
    display: block;
    color: var(--muted);
}

.chat-card {
    min-height: 690px;
    display: flex;
    flex-direction: column;
}

.instant-chat-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(139, 111, 78, .45);
}

.instant-chat-header .card-title {
    margin: 0;
}

.chat-thread {
    flex: 1;
    min-height: 430px;
    max-height: 560px;
    overflow-y: auto;
    padding: 14px 8px 14px 0;
    margin: 12px 0;
}

.chat-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    border-top: 1px solid rgba(139, 111, 78, .45);
    padding-top: 12px;
}

.chat-compose textarea {
    min-height: 74px;
}

@media (max-width: 950px) {
    .feed-layout,
    .messenger-shell,
    .profile-photo-editor {
        grid-template-columns: 1fr;
    }

    .conversation-list {
        position: static;
    }

    .chat-compose {
        grid-template-columns: 1fr;
    }
}


/* TavernWall v3 upgrades */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.inset-card {
    background: rgba(0, 0, 0, .16);
    margin: 0;
}

.photo-history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 12px;
}

.photo-history-item {
    border: 1px solid rgba(139, 111, 78, .55);
    border-radius: 14px;
    padding: 8px;
    background: rgba(0, 0, 0, .18);
}

.photo-history-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.photo-history-item span,
.photo-history-item small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

.attachment-picker {
    display: inline-flex;
    min-width: 116px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--gold);
    background: rgba(0, 0, 0, .18);
    cursor: pointer;
    font-weight: 800;
}

.attachment-picker input {
    display: none;
}

.message-attachment-image {
    display: block;
    max-width: min(100%, 360px);
    max-height: 260px;
    object-fit: cover;
    margin: 8px 0;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.attachment-link {
    display: inline-flex;
    margin: 8px 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .18);
}

.guild-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
}

.guild-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.guild-card h2 {
    margin-top: 0;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
}

.guild-cover {
    background: linear-gradient(135deg, rgba(74, 54, 38, .96), rgba(28, 20, 15, .96));
}

.notification-card {
    border-left: 5px solid rgba(139, 111, 78, .55);
}

.notification-card.unread {
    border-left-color: var(--gold);
    background: linear-gradient(180deg, rgba(100, 74, 39, .95), rgba(43, 43, 43, .96));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.stat-tile {
    text-align: center;
}

.stat-tile span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-tile strong {
    display: block;
    color: var(--gold);
    font-size: 34px;
    font-family: MedievalSharp, cursive;
}

.migration-log {
    white-space: pre-wrap;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #14100d;
    color: var(--text);
    overflow-x: auto;
}

@media (max-width: 950px) {
    .guild-layout {
        grid-template-columns: 1fr;
    }

    .chat-compose {
        grid-template-columns: 1fr;
    }
}

/* TavernWall v4 polish */
.onboarding-banner{width:min(1180px,calc(100% - 28px));margin:16px auto 0;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 18px;border:1px solid var(--gold);border-radius:16px;background:rgba(255,215,0,.12)}
.composer-tabs{display:flex;flex-wrap:wrap;gap:8px}.composer-tabs label{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--border);border-radius:999px;padding:8px 12px;background:rgba(0,0,0,.16);cursor:pointer}.composer-panel,.poll-fields{display:grid;gap:12px;border:1px dashed rgba(139,111,78,.7);border-radius:16px;padding:14px;background:rgba(0,0,0,.13)}
.two-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.three-col{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.profile-banner{min-height:180px;margin:-24px -24px 20px;border-radius:20px 20px 0 0;background-size:cover;background-position:center;border-bottom:1px solid var(--border)}
.mood-pill{display:inline-flex;padding:7px 11px;border-radius:999px;border:1px solid var(--border);background:rgba(255,215,0,.10);color:var(--gold);font-weight:800}.tavern-quote{margin:12px 0;padding:12px 16px;border-left:4px solid var(--gold);background:rgba(0,0,0,.16);border-radius:12px;color:var(--text)}.profile-font-medieval,.profile-font-medieval .profile-name{font-family:MedievalSharp,cursive}.profile-font-cinzel,.profile-font-cinzel .profile-name{font-family:Cinzel,serif}
.poll-box{padding:14px;border:1px solid rgba(139,111,78,.6);background:rgba(0,0,0,.16);border-radius:16px;margin:12px 0}.poll-box h4{margin:0 0 10px;color:var(--gold)}.poll-option{margin:8px 0}.poll-vote{width:100%;justify-content:space-between;background:rgba(0,0,0,.2)}.poll-vote.active{border-color:var(--gold);box-shadow:0 0 0 3px rgba(255,215,0,.12)}.poll-bar{height:7px;border-radius:99px;background:rgba(0,0,0,.35);overflow:hidden;margin-top:4px}.poll-bar span{display:block;height:100%;background:currentColor;color:var(--gold)}
.mini-user{display:flex;align-items:center;gap:8px;margin:8px 0}.inline-form{display:inline-flex;margin:2px}.inline-form button{padding:7px 9px;font-size:12px}.compact-table{font-size:14px}.typing-indicator{margin:6px 0 10px;color:var(--gold);font-size:13px;font-style:italic}.message-delete{display:inline-flex;padding:2px 6px;margin-left:5px;font-size:11px;border-radius:99px;color:var(--muted);background:transparent;border:1px solid rgba(139,111,78,.5)}.camera-preview{width:100%;max-height:240px;object-fit:cover;border-radius:14px;border:1px solid var(--border);background:#120d0b}.mini-camera .camera-preview{max-height:170px}.onboarding-card{max-width:820px;margin-inline:auto}.migration-log{white-space:pre-wrap;padding:14px;border-radius:14px;border:1px solid var(--border);background:#14100d;color:var(--text);overflow-x:auto}
@media(max-width:720px){.two-col,.three-col{grid-template-columns:1fr}.composer-tabs label{flex:1 1 160px}}


/* TavernWall v4.1 composer cleanup */
.compact-composer {
    gap: 14px;
}

.composer-type-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 12px 0 4px;
}

.composer-type-grid .composer-type {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(139, 111, 78, .8);
    border-radius: 16px;
    background: rgba(0, 0, 0, .18);
    cursor: pointer;
    color: var(--text);
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.composer-type-grid .composer-type:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, .08);
}

.composer-type-grid .composer-type.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .14);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, .08);
}

.composer-type-grid .composer-type input {
    display: none !important;
}

.composer-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid rgba(139, 111, 78, .8);
    border-radius: 999px;
    background: rgba(0, 0, 0, .24);
    font-size: 20px;
}

.composer-type strong,
.composer-type small {
    display: block;
}

.composer-type strong {
    color: var(--gold);
}

.composer-type small {
    color: var(--muted);
    margin-top: 2px;
    font-size: 12px;
}

.compact-composer [data-type-panel] {
    display: none !important;
}

.compact-composer [data-type-panel].active {
    display: grid !important;
}

.composer-help,
.composer-photo-panel,
.composer-poll-panel {
    gap: 12px;
    border: 1px dashed rgba(139, 111, 78, .7);
    border-radius: 16px;
    padding: 14px;
    background: rgba(0, 0, 0, .13);
}

.composer-help {
    color: var(--muted);
}

.composer-photo-panel h3,
.composer-poll-panel h3 {
    margin: 0;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
    font-size: 24px;
}

.compact-composer textarea {
    min-height: 104px;
}

.compact-composer .camera-preview {
    min-height: 150px;
    max-height: 220px;
}

@media (max-width: 720px) {
    .composer-type-grid {
        grid-template-columns: 1fr;
    }

    .composer-type-grid .composer-type {
        min-height: 62px;
    }
}


/* TavernWall v4.2 notification fix */
.notification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.notification-row-actions {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.notification-row-actions .mini-button {
    text-decoration: none;
}

.notification-card.unread {
    border-left-color: var(--gold);
}

.notification-card:not(.unread) {
    opacity: .82;
}

.notification-card:not(.unread):hover {
    opacity: 1;
}

@media (max-width: 720px) {
    .notification-actions,
    .notification-row-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .notification-actions form,
    .notification-actions button {
        width: 100%;
    }

    .notification-row-actions {
        margin-left: 0;
        margin-top: 8px;
    }
}


/* TavernWall v4.3 hard composer fix */
.tw-composer {
    gap: 14px;
}

.tw-composer input[type="radio"][hidden] {
    display: none !important;
}

.tw-type-tabs {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.tw-type-tabs label {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 10px;
    border: 1px solid rgba(139, 111, 78, .85);
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.tw-type-tabs label:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, .08);
}

.tw-type-tabs label.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 215, 0, .14);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, .08);
}

.tw-panel {
    display: none !important;
    gap: 12px;
    border: 1px dashed rgba(139, 111, 78, .7);
    border-radius: 16px;
    padding: 14px;
    background: rgba(0, 0, 0, .13);
}

.tw-panel.active {
    display: grid !important;
}

.tw-panel h3 {
    margin: 0;
    color: var(--gold);
    font-family: MedievalSharp, cursive;
    font-size: 24px;
}

.tw-panel p {
    margin: 0;
    color: var(--muted);
}

.tw-composer textarea {
    min-height: 106px;
}

.tw-composer .camera-preview {
    min-height: 150px;
    max-height: 220px;
}

.tw-composer .two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 720px) {
    .tw-type-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .tw-type-tabs label:last-child {
        grid-column: 1 / -1;
    }

    .tw-composer .two-col {
        grid-template-columns: 1fr;
    }
}
