:root {
  --ink: #15211d;
  --muted: #66736e;
  --line: #dce6e0;
  --paper: #fbfcfa;
  --soft: #eef6f0;
  --teal: #067a68;
  --teal-dark: #04594d;
  --coral: #cf5b45;
  --gold: #c89432;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 39, 34, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 230, 224, 0.82);
  background: rgba(251, 252, 250, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 12px;
}

nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.search-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #10231e;
}

.stage-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 29, 24, 0.86), rgba(12, 29, 24, 0.38)),
    url("https://images.unsplash.com/photo-1499678329028-101435549a4e?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.stage-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 0 54px;
}

.stage-copy {
  max-width: 690px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.stage-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.search-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
}

.search-panel button,
.deal-action a,
.primary-link,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.search-panel button,
.deal-action a,
.primary-link {
  background: var(--teal);
  color: var(--white);
}

.search-panel button:hover,
.deal-action a:hover,
.primary-link:hover {
  background: var(--teal-dark);
}

.toolbar-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-filters {
  display: flex;
  gap: 10px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  overflow-x: auto;
  padding: 18px 0;
}

.quick-filters button {
  min-width: 76px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 0 16px;
  white-space: nowrap;
}

.quick-filters button.is-active,
.quick-filters button:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.content-band,
.split-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 62px 0;
}

.content-band.muted {
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head > p,
.section-head div p:last-child {
  color: var(--muted);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.deal-card {
  display: grid;
  grid-template-rows: 220px 1fr auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 39, 34, 0.08);
}

.deal-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.deal-body {
  padding: 18px;
}

.deal-meta,
.deal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deal-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.deal-meta strong {
  color: var(--coral);
}

.deal-body p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.deal-action {
  border-top: 1px solid var(--line);
  padding: 14px 18px;
}

.deal-action > span {
  color: var(--ink);
  font-weight: 900;
}

.deal-action a {
  min-width: 106px;
  padding: 0 16px;
}

.split-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.destination-panel {
  padding: 30px 0;
}

.destination-panel p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.destination-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.destination-list button,
.click-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 0 16px;
}

.destination-list button {
  cursor: pointer;
  font-weight: 800;
}

.destination-list button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.campaign-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.campaign-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.campaign-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
  max-width: 520px;
  border-radius: var(--radius);
  background: rgba(21, 33, 29, 0.78);
  color: var(--white);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.campaign-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-copy p {
  margin: 0;
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

.ghost-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  padding: 0 14px;
}

.ghost-link:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.click-row strong {
  display: grid;
  min-width: 40px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--teal-dark);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  padding: 24px clamp(18px, 4vw, 56px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-meta,
.site-footer p {
  margin: 0;
}

.footer-meta strong {
  color: var(--ink);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.legal-links button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 0 12px;
}

.legal-links button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 33, 29, 0.62);
  cursor: pointer;
}

.legal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(680px, calc(100vh - 36px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.legal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.legal-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.legal-close:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.legal-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 36px);
}

.legal-copy {
  display: grid;
  gap: 12px;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
}

.modal-open {
  overflow: hidden;
}

.blog-shell,
.admin-shell,
.article-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.blog-shell {
  padding: 54px 0 70px;
}

.blog-browser .section-head h1,
.admin-head h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 68px);
}

.blog-filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 0.35fr) minmax(160px, 0.35fr) auto;
  gap: 12px;
  align-items: end;
  margin: 24px 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(23, 39, 34, 0.06);
}

.blog-filter-panel label,
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-filter-panel input,
.blog-filter-panel select,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.blog-filter-panel input,
.blog-filter-panel select,
.blog-filter-panel button,
.admin-form input,
.admin-form select {
  min-height: 48px;
}

.blog-filter-panel textarea,
.admin-form textarea {
  resize: vertical;
}

.blog-filter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 110px;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
}

.blog-filter-panel button:hover {
  background: var(--teal-dark);
}

.blog-result-head {
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  margin: 0 0 18px;
}

.blog-result-head p {
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-feature-band {
  border-top: 1px solid var(--line);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 39, 34, 0.08);
}

.blog-card a {
  display: grid;
  grid-template-rows: 230px 1fr;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-card h2 {
  margin: 0;
  font-size: 23px;
}

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

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 900;
}

.article-shell {
  padding: 42px 0 70px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 22px;
}

.back-link:hover {
  color: var(--teal-dark);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.article-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
}

.article-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-size: 18px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-cta {
  width: min(760px, 100%);
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 18px;
}

.article-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  padding: 0 18px;
}

.article-cta a:hover {
  background: var(--teal-dark);
}

.admin-shell {
  padding: 54px 0 70px;
}

.admin-login-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 39, 34, 0.08);
  padding: 24px;
}

.admin-login-panel h1 {
  margin-bottom: 8px;
  font-size: clamp(38px, 6vw, 68px);
}

.admin-login-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 0;
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-session {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-session div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.admin-form,
.admin-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 39, 34, 0.07);
}

.admin-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.admin-form h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.auth-form {
  align-self: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cover-preview {
  display: grid;
  min-height: 180px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
}

.cover-preview img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions .primary-link,
.admin-actions .ghost-button {
  padding: 0 16px;
}

.form-message {
  min-height: 19px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-message.is-error {
  color: #b8483a;
}

.form-message.is-success {
  color: var(--teal-dark);
}

.admin-list {
  padding: 18px;
}

.admin-list h2 {
  margin-bottom: 0;
  font-size: 28px;
}

#saved-posts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.saved-post {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}

.saved-post img {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.saved-post span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.saved-post h3 {
  margin: 3px 0 9px;
  font-size: 17px;
}

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

.saved-actions a,
.saved-actions button,
.saved-actions em {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 6px 9px;
}

.saved-actions button {
  cursor: pointer;
}

.saved-actions a:hover,
.saved-actions button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.admin-security {
  margin-top: 34px;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr) minmax(300px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.security-admin-list {
  min-height: 100%;
}

#admin-users {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.admin-user-item {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.admin-user-item strong {
  word-break: break-word;
}

.admin-user-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-user-item button {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #b8483a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.admin-user-item button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.redirect-body {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(21, 33, 29, 0.9), rgba(6, 122, 104, 0.78)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=80")
      center/cover;
}

.redirect-shell {
  display: grid;
  width: min(620px, calc(100% - 36px));
  min-height: 100vh;
  align-content: center;
  gap: 18px;
  margin: 0 auto;
  color: var(--white);
}

.redirect-shell .brand small {
  color: rgba(255, 255, 255, 0.74);
}

.redirect-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 30px;
  box-shadow: var(--shadow);
}

.redirect-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 46px);
}

.redirect-panel p:not(.eyebrow) {
  color: var(--muted);
}

.loader {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 4px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.primary-link {
  width: fit-content;
  padding: 0 18px;
}

svg {
  width: 18px;
  height: 18px;
}

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

@media (max-width: 920px) {
  .stage-content,
  .split-band {
    grid-template-columns: 1fr;
  }

  .stage-content {
    align-items: center;
    padding-top: 78px;
  }

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

  .blog-filter-panel,
  .admin-layout,
  .admin-login-panel,
  .security-grid,
  .article-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  h1 {
    font-size: 40px;
  }

  .search-stage,
  .stage-content {
    min-height: 760px;
  }

  .deal-grid,
  .click-grid,
  .blog-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .deal-card {
    min-height: 0;
  }

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

  .blog-filter-panel,
  .admin-head,
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .campaign-copy {
    position: static;
    border-radius: 0;
  }

  .campaign-panel img {
    min-height: 280px;
  }
}
