:root {
    --bg: #FFF9F0;
    --surface: #ffffff;
    --surface-soft: #fffdf8;
    --line: #ddd5ca;
    --text: #1A2B4C;
    --muted: #6C757D;
    --primary: #FF6B35;
    --primary-dark: #e45b29;
    --secondary: #1A2B4C;
    --secondary-soft: #eef2f8;
    --accent: #FF6F61;
    --accent-2: #00A896;
    --accent-3: #f7b267;
    --shadow: 0 14px 32px rgba(26, 43, 76, 0.10);
    --shadow-soft: 0 8px 18px rgba(26, 43, 76, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(circle at top left, rgba(255, 107, 53, 0.08), transparent 20rem),
        radial-gradient(circle at top right, rgba(0, 168, 150, 0.07), transparent 18rem),
        linear-gradient(180deg, #fffdf8, #fff7ed 55%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header,
.site-footer {
    background: rgba(255, 249, 240, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 43, 76, 0.08);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 6px 22px rgba(26, 43, 76, 0.06);
}

.site-footer {
    border-top: 1px solid rgba(26, 43, 76, 0.08);
    border-bottom: 0;
    margin-top: 3rem;
    background: var(--secondary);
    color: #ffffff;
}

.site-footer a {
    color: #ffffff;
}

.nav-wrap {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
    padding: 2rem 0;
}

.nav {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 0.82rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.nav a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.10);
    border-color: rgba(255, 107, 53, 0.16);
    transform: translateY(-1px);
}

.nav a.active-link {
    background: var(--secondary);
    color: #ffffff;
    border-color: rgba(26, 43, 76, 0.22);
    box-shadow: 0 10px 18px rgba(26, 43, 76, 0.14);
}

.nav a.active-link:hover {
    color: #ffffff;
    background: #24385f;
}

.brand {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--secondary);
}

.brand-with-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-with-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.cart-link {
    font-weight: 700;
}

.main-content {
    padding: 2rem 0 3rem;
    min-height: calc(100vh - 220px);
}

.hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 245, 0.98)),
        linear-gradient(120deg, #fff4eb, #fffdf8);
    border: 1px solid rgba(26, 43, 76, 0.08);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.9;
}

.hero::before {
    width: 220px;
    height: 220px;
    background: rgba(255, 107, 53, 0.14);
    top: -80px;
    right: -60px;
}

.hero::after {
    width: 180px;
    height: 180px;
    background: rgba(0, 168, 150, 0.12);
    bottom: -80px;
    left: -50px;
}

.eyebrow,
.badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 168, 150, 0.12);
    color: var(--accent-2);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-sale {
    background: rgba(255, 107, 53, 0.14);
    color: var(--primary);
}

.badge-low-stock {
    background: rgba(255, 111, 97, 0.16);
    color: #b54942;
}

.badge-out-stock {
    background: rgba(201, 72, 61, 0.16);
    color: #b13c32;
}

.hero h1,
.section h1,
.section h2 {
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.03;
    max-width: 12ch;
    margin-bottom: 0.85rem;
}

.hero p {
    max-width: 56ch;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-mark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-mark img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.hero-actions,
.cart-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-card,
.card,
.auth-card,
.mini-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.hero-card > :first-child,
.card > :first-child,
.auth-card > :first-child,
.mini-panel > :first-child {
    margin-top: 0;
}

.hero-card > :last-child,
.card > :last-child,
.auth-card > :last-child,
.mini-panel > :last-child {
    margin-bottom: 0;
}

.card h2,
.card h3,
.auth-card h1 {
    color: var(--secondary);
}

.auth-card,
.narrow {
    max-width: 560px;
}

.section {
    margin-top: 2rem;
}

.section h1 {
    font-size: 2rem;
}

.section h2 {
    font-size: 1.35rem;
}

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

.section-head > div > p,
.section-head > div > h1,
.section-head > div > h2 {
    margin-bottom: 0;
}

.product-grid,
.admin-grid,
.campus-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}

.stat-label,
.stat-hint {
    display: block;
}

.stat-label {
    color: var(--muted);
    font-size: 0.92rem;
}

.stat-value {
    display: block;
    margin: 0.35rem 0;
    font-size: 1.65rem;
    color: var(--secondary);
}

.stat-hint {
    color: var(--muted);
    font-size: 0.88rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(18, 40, 52, 0.12);
}

.product-card-out-stock {
    opacity: 0.88;
}

.product-card-out-stock:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.product-card-out-stock img {
    filter: grayscale(0.45) saturate(0.75);
}

.product-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.06), rgba(255, 107, 53, 0.08));
}

.product-body {
    padding: 1rem;
    display: grid;
    gap: 0.75rem;
    flex: 1;
}

.product-body h3 {
    margin: 0;
    line-height: 1.2;
}

.product-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 0.35rem;
}

.price-box {
    display: grid;
    gap: 0.2rem;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.product-link-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(201, 72, 61, 0.12);
    color: #b13c32;
    font-weight: 700;
    border: 1px solid rgba(201, 72, 61, 0.2);
    cursor: not-allowed;
}

.product-detail > img {
    width: 100%;
    min-height: 340px;
    max-height: 520px;
    border-radius: 24px;
    border: 1px solid var(--line);
    object-fit: cover;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.06), rgba(255, 107, 53, 0.08));
    box-shadow: var(--shadow-soft);
}

.product-detail,
.checkout-grid,
.split-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.comments-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    min-height: 44px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary-soft);
    color: var(--secondary);
    border-color: rgba(26, 43, 76, 0.12);
}

.btn-secondary:hover {
    background: #dde7f4;
    transform: translateY(-1px);
}

.btn-danger {
    background: #c9483d;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b13c32;
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

button {
    font: inherit;
}

.btn-small {
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    font-size: 0.92rem;
}

form,
.stack-form {
    display: grid;
    gap: 0.9rem;
}

label {
    display: block;
    color: var(--secondary);
    font-size: 0.94rem;
    font-weight: 600;
}

label input,
label select,
label textarea {
    margin-top: 0.45rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    font: inherit;
    background: white;
    color: var(--text);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

input[type="file"] {
    padding: 0.75rem;
    background: var(--surface-soft);
}

input::placeholder,
textarea::placeholder {
    color: #8c929b;
}

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

.stack-form > .muted,
.stack-form > .success,
.stack-form > .alert {
    margin: 0;
}

.inline-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

.inline-form > label,
.inline-form > .alert,
.inline-form > .success {
    flex-basis: 100%;
}

.inline-form > input[type="number"] {
    max-width: 140px;
}

.variant-picker {
    display: grid;
    gap: 0.85rem;
    width: 100%;
}

.variant-label {
    font-weight: 700;
    color: var(--secondary);
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.85rem;
    width: 100%;
}

.variant-card {
    position: relative;
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(26, 43, 76, 0.14);
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 10px 24px rgba(26, 43, 76, 0.06);
}

.variant-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variant-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 14px 28px rgba(255, 107, 53, 0.16);
    transform: translateY(-1px);
}

.variant-card.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.variant-title {
    font-weight: 700;
    color: var(--secondary);
}

.variant-stock {
    color: var(--muted);
    font-size: 0.92rem;
}

.variant-stock.is-low,
.stock-warning {
    color: #b54942;
}

.stock-warning {
    margin-top: -0.15rem;
    font-weight: 600;
}

.filter-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-form input,
.filter-form select {
    background: rgba(255, 255, 255, 0.94);
}

.filter-form-extended > * {
    flex: 1 1 160px;
}

.filter-form-extended button {
    flex: 0 0 auto;
    align-self: stretch;
}

.toggle-check {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    font-weight: 600;
    color: var(--secondary);
}

.toggle-check input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary);
    flex: 0 0 auto;
}

.toggle-check span {
    line-height: 1.2;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.table th,
.table td {
    padding: 0.85rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th {
    background: linear-gradient(180deg, #fffdf8, #fff7ef);
    color: var(--secondary);
    font-size: 0.94rem;
    font-weight: 700;
}

.table tr:hover td {
    background: rgba(255, 249, 240, 0.7);
}

.table td strong,
.table td b {
    color: var(--secondary);
}

.table-actions,
.action-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

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

.inline-delete-form button,
.table-actions .btn {
    min-width: 108px;
    justify-content: center;
    text-align: center;
}

.bar-chart {
    display: grid;
    gap: 0.85rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 110px 1fr 42px;
    gap: 0.75rem;
    align-items: center;
}

.bar-track {
    height: 14px;
    background: #f1ede6;
    border-radius: 999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.vertical-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    min-height: 260px;
}

.vertical-bar-item {
    flex: 1;
    text-align: center;
}

.vertical-bar-track {
    height: 200px;
    background: #f1ede6;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.vertical-bar-fill {
    width: 100%;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, var(--accent), var(--primary));
}

.summary-list {
    padding-left: 1.1rem;
}

.summary-list li {
    margin-bottom: 0.65rem;
}

.price-stack {
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdf8, #fff8f1);
    border: 1px solid rgba(26, 43, 76, 0.08);
}

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

.comments-feed-card {
    min-width: 0;
}

.comment-form-card {
    width: 100%;
    max-width: 420px;
    justify-self: end;
    padding: 1rem 1rem 1.05rem;
}

.comment-form-card h3 {
    margin-bottom: 0.4rem;
}

.comment-form {
    gap: 0.75rem;
}

.comment-form textarea {
    min-height: 110px;
}

.comment-form .btn {
    width: 100%;
}

.comment-card {
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffdf9, #fff8f1);
    box-shadow: var(--shadow-soft);
}

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

.comment-card p {
    margin: 0;
    line-height: 1.5;
}

.compact-card {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px dashed rgba(26, 43, 76, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,249,240,0.95));
}

.builder-card {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(26, 43, 76, 0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248, 251, 255, 0.95));
}

.builder-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.builder-head h3 {
    margin: 0 0 0.25rem 0;
}

.builder-list {
    display: grid;
    gap: 0.75rem;
}

.builder-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 14px;
    border: 1px solid rgba(26, 43, 76, 0.08);
    background: #fff;
}

.builder-row-stock {
    grid-template-columns: 1.6fr 0.7fr auto;
}

.spec-list {
    display: grid;
    gap: 0.65rem;
}

.spec-list p {
    margin: 0;
}

.invoice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.order-items-inline {
    display: grid;
    gap: 0.35rem;
}

.status-form {
    min-width: 160px;
}

.status-form select,
.status-form button {
    width: 100%;
}

.invoice-total {
    margin-top: 1rem;
}

.alert {
    color: #8a2f24;
    background: #fff0ed;
    border: 1px solid #ffc6bc;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.success {
    color: #0d6b61;
    background: #e8faf8;
    border: 1px solid #a9e4dc;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.success,
.alert {
    box-shadow: var(--shadow-soft);
    line-height: 1.5;
}

.campus-strip {
    margin-top: 1.5rem;
}

.mini-panel {
    background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.mini-panel h3 {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

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

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-clean li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    line-height: 1.45;
}

.footer-links li {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.pill {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 111, 97, 0.14);
    border: 1px solid rgba(255, 111, 97, 0.25);
    font-weight: 600;
    font-size: 0.92rem;
}

.hero-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.hero-card li {
    position: relative;
    padding-left: 1.1rem;
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--primary);
}

.card-link {
    display: block;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 43, 76, 0.10);
}

.card-link p {
    color: var(--muted);
}

.badge + .badge {
    margin-left: 0.35rem;
}

.section .muted {
    line-height: 1.45;
}

.auth-card {
    margin: 2rem auto 0;
}

.auth-card form {
    margin-top: 1rem;
}

.site-footer h3 {
    margin-top: 0;
}

.site-footer p {
    line-height: 1.6;
}

.site-footer a:hover {
    color: #ffd8c6;
}

.cart-actions > div:last-child {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.26);
    outline-offset: 2px;
}

.site-footer .list-clean li:last-child,
.table tbody tr:last-child td,
.list-clean li:last-child {
    border-bottom: 0;
}

@media (max-width: 800px) {
    .hero,
    .product-detail,
    .checkout-grid,
    .comments-layout,
    .footer-grid,
    .split-layout,
    .campus-strip {
        grid-template-columns: 1fr;
    }

    .nav-wrap,
    .section-head,
    .cart-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
    }

    .brand-with-logo img {
        width: 44px;
        height: 44px;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .filter-form-extended > * {
        flex-basis: 100%;
    }

    .builder-row,
    .builder-row-stock {
        grid-template-columns: 1fr;
    }

    .builder-head {
        align-items: flex-start;
    }

    .inline-delete-form,
    .inline-delete-form button,
    .table-actions .btn,
    .action-row .btn {
        width: 100%;
    }

    .hero {
        padding: 1.5rem;
    }

    .hero-card,
    .card,
    .auth-card,
    .mini-panel {
        padding: 1rem;
    }

    .product-detail > img {
        min-height: 240px;
    }

    .comment-form-card {
        max-width: none;
        justify-self: stretch;
    }
}
