:root {
  --bg: #ece1cb;
  --paper: rgba(251, 248, 242, 0.92);
  --paper-strong: rgba(255, 255, 255, 0.97);
  --paper-muted: rgba(247, 242, 233, 0.82);
  --ink-strong: #1f2430;
  --ink: #31261b;
  --ink-soft: #655748;
  --muted: #8d7b68;
  --brand: #1d2b49;
  --brand-strong: #16223b;
  --accent: #d9bf77;
  --line: rgba(92, 74, 50, 0.14);
  --line-strong: rgba(92, 74, 50, 0.22);
  --shadow: 0 18px 42px rgba(47, 33, 17, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.chart-bg {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 18% 24%, rgba(214, 189, 149, 0.35) 0%, transparent 48%),
    radial-gradient(ellipse at 80% 18%, rgba(224, 201, 162, 0.28) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 82%, rgba(209, 183, 141, 0.25) 0%, transparent 50%),
    linear-gradient(rgba(126, 103, 72, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 103, 72, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(126, 103, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 103, 72, 0.035) 1px, transparent 1px);
  background-size:
    100% 100%, 100% 100%, 100% 100%,
    180px 180px, 180px 180px,
    36px 36px, 36px 36px;
  position: relative;
}

.chart-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 28%, rgba(53, 36, 16, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.chart-map {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.chart-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.27;
}

.site-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 20px 14px 36px;
}

.page {
  display: grid;
  gap: 16px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-shrink: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 1;
}

.topbar__link {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.05rem, 3.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-strong);
  text-decoration: none;
}

.topbar__link--active {
  color: var(--ink-strong);
}

.topbar__spacer {
  flex: 1;
}

.header-search {
  display: contents;
}

.header-search input {
  min-height: 36px;
  width: clamp(90px, 20vw, 220px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper-strong) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='6' cy='6' r='4' stroke='%2394816f' stroke-width='1.5'/%3E%3Cpath d='M9.5 9.5L12.5 12.5' stroke='%2394816f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left 10px center;
  color: var(--ink);
  padding: 0 12px 0 30px;
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.header-search input::placeholder {
  color: #94816f;
}

.header-search input:focus {
  outline: none;
  border-color: rgba(29, 43, 73, 0.35);
  box-shadow: 0 0 0 3px rgba(29, 43, 73, 0.08);
}

.brandmark {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.05rem, 3.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink-strong);
  text-decoration: none;
}

.brandmark__tld {
  opacity: 0.35;
  font-weight: 400;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sheet,
.listing-card,
.status-banner,
.empty-state,
.search-strip,
.compose-card {
  background: var(--paper);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.sheet,
.status-banner,
.empty-state,
.compose-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.page-title,
.detail-title,
.empty-title,
.listing-card__title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  color: var(--ink-strong);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.page-title {
  font-size: clamp(2rem, 5vw, 2.85rem);
}

.detail-title {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.empty-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.listing-card__title {
  font-size: 0.99rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.body-copy,
.meta-copy,
.helper-text,
.listing-card__excerpt,
.markdown {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.body-copy--tight {
  margin-top: 0.15rem;
}

.search-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 6px;
  background: rgba(250, 247, 241, 0.86);
}

.search-strip--header {
  grid-column: 1 / -1;
}

.search-strip input {
  width: 100%;
  min-height: 38px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.9rem;
}

.search-strip input::placeholder {
  color: #94816f;
}

.search-strip input:focus {
  outline: 2px solid rgba(29, 43, 73, 0.12);
}

.button,
.button-secondary,
.capture-button,
.card-link,
.search-strip__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button,
.capture-button,
.search-strip__button {
  border: 1px solid rgba(17, 28, 51, 0.06);
  background: var(--brand);
  color: var(--accent);
}

.button:hover,
.button:focus-visible,
.capture-button:hover,
.capture-button:focus-visible,
.search-strip__button:hover,
.search-strip__button:focus-visible {
  background: var(--brand-strong);
}

.button-secondary,
.card-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.98);
}

.button--compact,
.button-secondary--compact {
  min-height: 36px;
  padding: 0 14px;
}

.button[disabled],
.button-secondary[disabled] {
  opacity: 0.56;
  cursor: default;
}

.status-banner {
  color: #7f1d1d;
  border-color: rgba(185, 28, 28, 0.12);
  background: rgba(255, 242, 242, 0.92);
}

.status-banner--success {
  color: #14532d;
  border-color: rgba(22, 101, 52, 0.12);
  background: rgba(240, 253, 244, 0.92);
}

.listing-grid {
  display: grid;
  gap: 12px;
}

/* --- Listing card --- */

.listing-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: 12px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.listing-card__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
}

.listing-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__thumb--empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
}

.listing-card__body {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 2px;
}

.listing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.listing-card__price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-strong);
  white-space: nowrap;
  padding-top: 2px;
}

.listing-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

.listing-card__sep {
  opacity: 0.5;
}

.listing-card__excerpt {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Shared layout helpers --- */

.detail-hero,
.compose-photo {
  min-height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

.detail-hero img,
.thumb-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compose-photo img {
  display: block;
  width: 100%;
  max-height: 40vh;
  object-fit: cover;
}

.gallery-placeholder,
.compose-photo--empty {
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.46);
}

.compose-card,
.compose-shell,
.compose-shell__body,
.compose-rail,
.compose-header,
.detail-layout,
.contact-card,
.guide-card,
.analysis-card {
  display: grid;
  gap: 14px;
}

.sheet--detail {
  display: grid;
  gap: 22px;
}

/* --- Detail page --- */

.detail-heading,
.contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-price {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

.detail-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 5px;
}

.detail-section {
  display: grid;
  gap: 10px;
}

.detail-specs {
  display: grid;
  gap: 10px;
}

.detail-spec {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  align-items: baseline;
}

.detail-spec__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.detail-spec__value {
  font-size: 0.9rem;
  color: var(--ink);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* --- Misc --- */

.detail-meta,
.compose-notes,
.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(92, 74, 50, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 700;
}

.card-link {
  justify-self: flex-start;
}

.listing-card:focus-visible {
  outline: 2px solid rgba(29, 43, 73, 0.24);
  outline-offset: 2px;
}

.empty-state {
  text-align: center;
}

.loading-card {
  min-height: 220px;
  place-items: center;
  text-align: center;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-grid--2 {
  grid-template-columns: 1fr;
}

.field-grid--top {
  align-items: start;
}

.cat-field {
  position: relative;
}

.cat-trigger {
  appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(92, 74, 50, 0.16);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0.78rem 0.88rem;
  cursor: pointer;
  font-size: 0.88rem;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cat-trigger:hover,
.cat-trigger.is-open {
  border-color: rgba(29, 43, 73, 0.35);
}

.cat-trigger.is-open {
  box-shadow: 0 0 0 3px rgba(29, 43, 73, 0.08);
}

.cat-trigger__placeholder {
  color: #94816f;
}

.cat-trigger__chevron {
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.18s ease;
}

.cat-trigger.is-open .cat-trigger__chevron {
  transform: rotate(180deg);
}

.cat-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--paper-strong);
  border: 1px solid rgba(92, 74, 50, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(47, 33, 17, 0.13);
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.cat-tree__top {
  appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.65rem 0.88rem;
  background: none;
  border: none;
  border-top: 1px solid rgba(92, 74, 50, 0.09);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink);
  text-align: left;
  transition: background-color 0.14s ease;
}

.cat-tree__group:first-child .cat-tree__top {
  border-top: none;
}

.cat-tree__top:hover {
  background: rgba(255, 255, 255, 0.55);
}

.cat-tree__top.is-selected {
  color: var(--brand);
  font-weight: 600;
}

.cat-tree__chevron {
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}

.cat-tree__children {
  display: grid;
  background: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(92, 74, 50, 0.09);
  border-bottom: 1px solid rgba(92, 74, 50, 0.09);
}

.cat-tree__child {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0.52rem 0.88rem 0.52rem 1.4rem;
  background: none;
  border: none;
  border-top: 1px solid rgba(92, 74, 50, 0.07);
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--ink-soft);
  text-align: left;
  transition: background-color 0.14s ease;
}

.cat-tree__child:first-child {
  border-top: none;
}

.cat-tree__child:hover {
  background: rgba(255, 255, 255, 0.6);
}

.cat-tree__child.is-selected {
  color: var(--brand);
  font-weight: 600;
  background: rgba(29, 43, 73, 0.05);
}

.field {
  display: grid;
  gap: 5px;
}

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(92, 74, 50, 0.16);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0.78rem 0.88rem;
  font-size: 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b8a898;
  opacity: 1;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(29, 43, 73, 0.35);
  box-shadow: 0 0 0 3px rgba(29, 43, 73, 0.08);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a5a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.field--file input[type="file"] {
  padding: 0.72rem 0.88rem;
}

.compose-rail {
  align-content: start;
  gap: 12px;
}

.compose-header {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.page-title--compact {
  font-size: clamp(1.85rem, 4.5vw, 2.6rem);
}

.analysis-card {
  border-radius: var(--radius-lg);
  padding: 13px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(92, 74, 50, 0.1);
}

.analysis-card--soft {
  background: rgba(250, 246, 239, 0.68);
}

.analysis-card__status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.analysis-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.guide-card {
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(92, 74, 50, 0.09);
}

.guide-card--muted {
  background: rgba(245, 239, 230, 0.56);
  opacity: 0.84;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 9px;
}

.thumb-button,
.thumb-button--static {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(92, 74, 50, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.thumb-button {
  padding: 0;
  cursor: pointer;
}

.thumb-button.is-active {
  outline: 2px solid rgba(29, 43, 73, 0.3);
}

.thumb-button--static {
  pointer-events: none;
}

.compose-photo {
  position: relative;
}

.compose-photo__prompt {
  width: min(100%, 260px);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.compose-photo__title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.38rem;
  line-height: 1;
  color: var(--ink-strong);
}

.compose-photo__analyzing {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(10, 20, 40, 0.55);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(2px);
}

.capture-button--overlay {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
}

.compose-additional {
  display: grid;
  gap: 10px;
}

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

.contact-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.contact-phone,
.contact-location {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contact-phone {
  text-align: right;
  white-space: nowrap;
}

.seller-notes-box {
  display: grid;
  gap: 8px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(29, 43, 73, 0.14);
  background: rgba(232, 240, 250, 0.72);
  padding: 12px;
}

.markdown {
  display: grid;
  gap: 0.9rem;
}

.markdown h2,
.markdown h3 {
  margin: 0.35rem 0 0;
  font-family: "Newsreader", Georgia, serif;
  color: var(--ink-strong);
  letter-spacing: -0.02em;
}

.markdown p,
.markdown ul,
.markdown ol {
  margin: 0;
}

.markdown ul,
.markdown ol {
  padding-left: 1.15rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(29, 43, 73, 0.14);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 0.8rem;
}

.spinner--inline {
  width: 24px;
  height: 24px;
  margin: 0;
}

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

.site-footer {
  padding: 24px 0 8px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer__about {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

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

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

.thumb-button--removable {
  position: relative;
}

.thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(127, 29, 29, 0.85);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.thumb-remove:hover {
  background: rgba(153, 27, 27, 1);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.button--danger {
  color: #7f1d1d;
  border-color: rgba(185, 28, 28, 0.2);
}

.button--danger:hover {
  background: rgba(254, 226, 226, 0.9);
  border-color: rgba(185, 28, 28, 0.35);
}

@media (min-width: 720px) {
  .site-shell {
    padding: 24px 20px 42px;
  }

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

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .detail-layout > :first-child {
    position: sticky;
    top: 20px;
  }
}

@media (min-width: 980px) {
  .compose-shell {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
  }
}
