:root {
    --bg: #f4efe7;
    --bg-accent: #d9efe8;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --ink: #14231c;
    --muted: #5f6d66;
    --line: rgba(20, 35, 28, 0.1);
    --primary: #0f766e;
    --primary-dark: #0b5b56;
    --secondary: #ffb84d;
    --success: #1f9d66;
    --danger: #c34b52;
    --shadow: 0 24px 70px rgba(17, 35, 30, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 184, 77, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 32%),
        linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
}

a,
button,
input,
textarea,
select {
    transition: 180ms ease;
}

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

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 35%),
        radial-gradient(circle at 20% 15%, rgba(255, 184, 77, 0.14), transparent 16%),
        radial-gradient(circle at 80% 18%, rgba(15, 118, 110, 0.1), transparent 18%);
    z-index: -1;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(18px);
    background: rgba(251, 248, 243, 0.72);
    transition: transform 0.4s ease-in-out;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    color: var(--ink);
    text-decoration: none;
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.nav-inline-form {
    margin: 0;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 999px;
}

.site-nav a:hover {
    background: rgba(15, 118, 110, 0.1);
    color: var(--primary-dark);
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-logout {
    padding: 0.7rem 1rem;
    background: rgba(20, 35, 28, 0.08);
    color: var(--ink);
}

main.container {
    padding: 6rem 0 4rem;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.site-footer__brand,
.site-footer__links,
.site-footer__meta {
    display: grid;
    gap: 0.5rem;
    align-content: start;
}

.site-footer__links a {
    color: var(--ink);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--primary);
}

.site-footer__title {
    color: var(--primary);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.flash {
    border-radius: 16px;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    background: var(--surface-strong);
}

.flash--success {
    border-color: rgba(31, 157, 102, 0.2);
    background: rgba(31, 157, 102, 0.08);
}

.flash--error {
    border-color: rgba(195, 75, 82, 0.2);
    background: rgba(195, 75, 82, 0.08);
}

.eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--primary);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
    font-size: 1.4rem;
}

p {
    color: var(--muted);
    line-height: 1.65;
}

.hero,
.page-hero,
.feature-card,
.review-card,
.timeline-card,
.toolbar,
.empty-state,
.form-shell,
.card,
.hero-panel,
.stat-card,
.mini-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero,
.page-hero,
.form-shell,
.card,
.empty-state {
    border-radius: var(--radius-xl);
}

.hero--home,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.hero-copy {
    max-width: 60ch;
    font-size: 1.05rem;
}

.hero-actions,
.form-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.stat-card,
.stat-pill {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.stat-card strong,
.stat-pill strong {
    font-size: 2rem;
    line-height: 1;
}

.feature-strip,
.review-grid,
.timeline-grid,
.review-columns,
.field-grid,
.card-grid {
    display: grid;
    gap: 1rem;
}

.feature-strip,
.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.8rem;
}

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

.feature-card,
.timeline-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

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

.review-feed {
    display: grid;
    gap: 1rem;
}

.review-feed--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.review-card {
    position: relative;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.review-card:target,
.review-card.is-highlighted {
    border-color: rgba(255, 184, 77, 0.9);
    box-shadow: 0 24px 70px rgba(255, 184, 77, 0.25);
}

.review-card__top,
.review-actions,
.toolbar,
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.review-card__top {
    align-items: start;
}

.rating-line,
.badge-row,
.review-meta,
.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.stars {
    color: var(--secondary);
    letter-spacing: 0.08em;
}

.star-muted {
    color: rgba(255, 184, 77, 0.25);
}

.rating-value {
    font-weight: 700;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.09);
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.badge--solid {
    background: var(--primary);
    color: #fff;
}

.review-meta {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.review-copy {
    margin: 1rem 0 1.15rem;
    color: var(--ink);
}

.review-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.mini-card {
    padding: 1rem;
    border-radius: var(--radius-md);
}

.mini-card__label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.review-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 82px;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.review-image {
    padding: 0;
    min-height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: transparent;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-image:hover img {
    transform: scale(1.04);
}

.review-gallery--1 {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 220px;
}

.review-gallery--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
}

.review-gallery--3 .review-image:first-child,
.review-gallery--4 .review-image:first-child,
.review-gallery--5 .review-image:first-child,
.review-gallery--6 .review-image:first-child,
.review-gallery--7 .review-image:first-child,
.review-gallery--8 .review-image:first-child,
.review-gallery--9 .review-image:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.review-gallery--3,
.review-gallery--4 {
    grid-auto-rows: 96px;
}

.review-gallery--5,
.review-gallery--6,
.review-gallery--7,
.review-gallery--8,
.review-gallery--9 {
    grid-auto-rows: 84px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-main {
    min-width: 0;
}

.detail-sidebar {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.toolbar,
.card {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.view-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.view-switcher__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.4rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
}

.view-switcher__button.is-active {
    background: var(--primary);
    color: #fff;
}

.primary-button,
.ghost-button,
button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-button,
button {
    background: var(--primary);
    color: #fff;
}

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

.ghost-button {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.is-copied {
    animation: copy-pop 0.35s ease-out;
    background: var(--success) !important;
    color: white !important;
    border-color: var(--success) !important;
}

@keyframes copy-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.text-link {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: var(--primary);
}

input,
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: rgba(15, 118, 110, 0.5);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-shell {
    padding: 1.5rem;
}

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

.user-list {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

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

.field {
    display: grid;
    gap: 0.55rem;
}

.field span {
    font-weight: 700;
}

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

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.star-rating__star {
    padding: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 184, 77, 0.28);
    font-size: 2rem;
    line-height: 1;
    transform-origin: center;
}

.star-rating__star:hover,
.star-rating__star:focus-visible,
.star-rating__star.is-active {
    color: var(--secondary);
    background: rgba(255, 184, 77, 0.12);
}

.star-rating__label {
    color: var(--muted);
    font-size: 0.95rem;
}

.upload-shell {
    display: grid;
    gap: 0.85rem;
}

.upload-shell__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.upload-button {
    background: linear-gradient(135deg, var(--primary) 0%, #149b8f 100%);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 16px 30px rgba(15, 118, 110, 0.22);
}

.upload-hint {
    color: var(--muted);
    font-size: 0.95rem;
}

.upload-dropzone {
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px dashed rgba(15, 118, 110, 0.35);
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.6));
    cursor: pointer;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.8rem;
}

.upload-empty {
    margin: 0;
    padding: 1rem;
    border-radius: 18px;
    border: 1px dashed var(--line);
    background: rgba(255, 255, 255, 0.52);
}

.upload-preview__item {
    display: grid;
    gap: 0.55rem;
    padding: 0.7rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.upload-preview__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
}

.upload-preview__meta {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.upload-preview__meta strong,
.upload-preview__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-preview__meta span {
    color: var(--muted);
    font-size: 0.9rem;
}

.upload-remove {
    background: rgba(195, 75, 82, 0.1);
    color: var(--danger);
    border: 1px solid rgba(195, 75, 82, 0.16);
}

.health-panel {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
}

.health-panel__label {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.health-status {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.health-status__dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: currentColor;
}

.health-status--pending {
    color: #8a6d2f;
    background: rgba(255, 184, 77, 0.12);
}

.health-status--ok {
    color: var(--success);
    background: rgba(31, 157, 102, 0.12);
}

.health-status--error {
    color: var(--danger);
    background: rgba(195, 75, 82, 0.12);
}

.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.preview-modal[hidden] {
    display: none;
}

.preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 16, 0.72);
    backdrop-filter: blur(10px);
}

.preview-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: min(90vh, 900px);
    overflow: auto;
    padding: 1.4rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.preview-modal__head,
.preview-modal__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.preview-modal__head {
    margin-bottom: 1rem;
}

.preview-modal__close {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(20, 35, 28, 0.08);
    color: var(--ink);
    font-size: 1.7rem;
}

.preview-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 231, 0.82));
    border: 1px solid var(--line);
}

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

.legal-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.auth-shell {
    display: grid;
    place-items: center;
    min-height: 65vh;
}

.auth-modal {
    width: min(560px, 100%);
    padding: 1.6rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

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

.inline-delete-form {
    display: inline-flex;
    margin-left: 0.75rem;
}

.upload-preview--modal {
    margin-top: 0.25rem;
}

.submit-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: spin 700ms linear infinite;
}

.is-loading .submit-label {
    opacity: 0.75;
}

.is-loading .submit-spinner {
    display: inline-block;
}

.primary-button:disabled,
.ghost-button:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.toggle-row {
    justify-content: start;
    flex-wrap: wrap;
}

.toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.toggle input {
    width: auto;
}

.hero-note {
    align-content: start;
}

.hero-note span {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.empty-state {
    padding: 2rem;
    text-align: center;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pagination__link,
.pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
}

.pagination__link {
    color: var(--ink);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
}

.pagination__link.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 13, 0.82);
    backdrop-filter: blur(8px);
}

.lightbox__frame {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(1000px, calc(100vw - 3rem));
    max-height: calc(100vh - 3rem);
    display: grid;
    gap: 0.75rem;
}

.lightbox__frame img {
    max-height: calc(100vh - 8rem);
    width: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.lightbox__frame figcaption {
    color: #eef2f0;
    text-align: center;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 999px;
    font-size: 1.7rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.16);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        transition: opacity 560ms ease, transform 560ms ease;
    }

    .review-card,
    .feature-card,
    .timeline-card,
    .toolbar,
    .form-shell,
    .hero,
    .page-hero {
        animation: float-in 700ms ease both;
    }
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .hero--home,
    .page-hero,
    .feature-strip,
    .review-grid,
    .timeline-grid,
    .card-grid,
    .detail-layout,
    .site-footer__grid,
    .legal-layout,
    .review-feed--grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header .container,
    .site-nav,
    .toolbar,
    .review-card__top,
    .review-actions,
    .section-head,
    .field-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hero-panel,
    .review-columns {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .preview-modal__head,
    .preview-modal__actions {
        flex-direction: column;
        align-items: stretch;
    }

    h1 {
        font-size: 2.7rem;
    }
}
