* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f5ef;
  color: #1f2933;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  opacity: 0.65;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 3;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 41, 51, 0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #78828c;
  font: inherit;
  cursor: pointer;
}

.lang-button.active {
  color: #283618;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid,
.visit-grid,
.newsletter-preview-grid,
.newsletter-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b705c;
}

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

h1,
.section-title,
.hero-card h2,
.preview-card h3,
.page-title,
.full-newsletter h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy,
.section-copy,
.page-intro {
  max-width: 650px;
  font-size: 1.1rem;
  color: #52606d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: #283618;
  color: white;
}

.button-secondary {
  background: transparent;
  border-color: #283618;
  color: #283618;
}

.button-light {
  background: #fffdf8;
  color: #283618;
}

.hero-card,
.preview-card,
.visit-card,
.service-feature,
.announcement-card,
.full-newsletter,
.archive-item {
  background: #fffdf8;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(38, 50, 56, 0.07);
}

.hero-card,
.preview-card,
.visit-card,
.full-newsletter {
  padding: 30px;
}

.card-label {
  color: #6b705c;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.service-time {
  font-size: 1.15rem;
  font-weight: 700;
}

.status-pill,
.tag {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e9edc9;
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #ebe7dc;
}

.section-title {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.service-feature {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 680px;
  padding: 28px;
}

.service-feature h3 {
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.service-feature strong {
  font-size: 2rem;
}

.service-feature p:last-child {
  margin: 6px 0 0;
  color: #52606d;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border-radius: 22px;
  background: #e9edc9;
  font-size: 2rem;
}

.newsletter-preview-grid {
  align-items: center;
}

.preview-card h3 {
  margin: 18px 0 10px;
  font-size: 2rem;
}

.preview-card p {
  color: #52606d;
}

.text-link {
  font-weight: 700;
  color: #283618;
  text-decoration: none;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.announcement-card {
  padding: 24px;
}

.announcement-card h3 {
  margin: 14px 0 8px;
}

.announcement-card p {
  margin-bottom: 0;
  color: #52606d;
}

.content-note {
  margin: 20px 0 0;
  color: #78828c;
  font-size: 0.85rem;
}

.visit-section {
  background: #283618;
  color: white;
}

.visit-section .eyebrow {
  color: #d9e2c2;
}

.visit-address {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.visit-card {
  color: #1f2933;
}

.big-time {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 3.6rem;
  line-height: 1;
}

.newsletter-hero {
  padding: 88px 0 30px;
}

.page-title {
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.newsletter-page-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.full-newsletter {
  min-height: 360px;
}

.full-newsletter h2 {
  margin: 12px 0 6px;
  font-size: 2.3rem;
}

.issue-date {
  color: #6b705c;
  font-weight: 600;
}

.newsletter-section {
  padding: 22px 0;
  border-top: 1px solid rgba(31, 41, 51, 0.1);
}

.newsletter-section:first-of-type {
  margin-top: 24px;
}

.newsletter-section h3 {
  margin-bottom: 6px;
}

.newsletter-section p {
  margin-bottom: 0;
  color: #52606d;
  white-space: pre-line;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-item {
  display: block;
  padding: 18px;
  text-decoration: none;
  cursor: pointer;
}

.archive-item:hover {
  transform: translateY(-1px);
}

.archive-item strong {
  display: block;
  margin-bottom: 3px;
}

.archive-item span {
  color: #6b705c;
  font-size: 0.88rem;
}

.footer {
  padding: 28px 0;
  background: #18210f;
  color: #e6eadf;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-row p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    order: initial;
  }

  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #fffdf8;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(31, 41, 51, 0.12);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .visit-grid,
  .newsletter-preview-grid,
  .newsletter-page-grid,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .visit-grid,
  .newsletter-preview-grid,
  .newsletter-page-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .service-feature {
    align-items: flex-start;
  }

  .newsletter-page-grid aside {
    margin-top: 14px;
  }

  .footer-row {
    flex-direction: column;
    gap: 4px;
  }
}


.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-footer-link {
  color: #cfd7c8;
  font-size: 0.82rem;
  text-decoration: none;
  opacity: 0.75;
}

.admin-footer-link:hover {
  opacity: 1;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(233, 237, 201, 0.7), transparent 34%),
    #f7f5ef;
}

.admin-main {
  padding: 72px 0 96px;
}

.admin-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: #52606d;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-login-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  min-height: 65vh;
}

.admin-intro h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.admin-intro p {
  max-width: 560px;
  color: #52606d;
  font-size: 1.05rem;
}

.admin-card {
  background: #fffdf8;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 22px 55px rgba(38, 50, 56, 0.1);
}

.admin-card h2 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.admin-card-copy {
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 0.95rem;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label,
.editor-field label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-form input,
.editor-field input,
.editor-field textarea,
.editor-field select {
  width: 100%;
  border: 1px solid #cbd2d9;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: white;
}

.admin-form input:focus,
.editor-field input:focus,
.editor-field textarea:focus,
.editor-field select:focus {
  outline: 2px solid #a3b18a;
  border-color: transparent;
}

.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 70px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #52606d;
  font-weight: 700;
  cursor: pointer;
}

.admin-security-note {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 16px;
  background: #f4f1e8;
  color: #59636d;
  font-size: 0.83rem;
}

.admin-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: #6b705c;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-demo-button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: #52606d;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.admin-dashboard {
  display: none;
}

.admin-dashboard.visible {
  display: block;
}

.admin-login-view.hidden {
  display: none;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.dashboard-header h1 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1;
}

.dashboard-subtitle {
  color: #52606d;
}

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

.admin-button-secondary {
  border: 1px solid #283618;
  background: transparent;
  color: #283618;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.editor-panel,
.preview-panel {
  background: #fffdf8;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 24px;
  padding: 26px;
}

.editor-panel h2,
.preview-panel h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 22px;
}

.editor-fields {
  display: grid;
  gap: 18px;
}

.editor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.editor-language-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.editor-tab {
  border: 1px solid rgba(31, 41, 51, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  background: white;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.editor-tab.active {
  background: #283618;
  color: white;
  border-color: #283618;
}

.editor-language-panel {
  display: none;
}

.editor-language-panel.active {
  display: grid;
  gap: 18px;
}

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

.editor-helper {
  margin: -6px 0 0;
  color: #7b8490;
  font-size: 0.8rem;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.preview-newsletter {
  overflow: hidden;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 20px;
  background: #f7f5ef;
}

.preview-newsletter-header {
  padding: 26px;
  background: #283618;
  color: white;
}

.preview-newsletter-header p {
  margin-bottom: 8px;
  color: #dfe6d6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-newsletter-header h3 {
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.preview-newsletter-date {
  opacity: 0.8;
  font-size: 0.88rem;
}

.preview-newsletter-body {
  padding: 24px;
}

.preview-section {
  padding: 17px 0;
  border-top: 1px solid rgba(31, 41, 51, 0.09);
}

.preview-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.preview-section h4 {
  margin-bottom: 6px;
}

.preview-section p {
  margin-bottom: 0;
  color: #59636d;
  white-space: pre-line;
}

.draft-status {
  margin-top: 16px;
  color: #6b705c;
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 850px) {
  .admin-login-grid,
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-login-grid {
    gap: 30px;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .editor-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


.admin-form button:disabled,
.admin-form input:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.dashboard-actions {
  flex-wrap: wrap;
}

@media (max-width: 620px) {
  .dashboard-actions {
    width: 100%;
  }

  .dashboard-actions .button {
    flex: 1 1 auto;
  }
}


.admin-content-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 30px;
  padding: 6px;
  width: fit-content;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 999px;
  background: #fffdf8;
}

.admin-content-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: #52606d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-content-tab.active {
  background: #283618;
  color: white;
}

.admin-content-section {
  display: none;
}

.admin-content-section.active {
  display: block;
}

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

.section-admin-heading h2 {
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-admin-heading p:last-child {
  margin-bottom: 0;
  color: #52606d;
}

.service-admin-preview {
  padding: 30px;
  border-radius: 22px;
  background: #283618;
  color: white;
}

.service-admin-preview .card-label {
  color: #d9e2c2;
}

.service-admin-preview h3 {
  margin: 10px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.service-admin-preview .big-time {
  color: white;
}

.announcement-admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.announcement-admin-list {
  display: grid;
  gap: 12px;
}

.admin-announcement-item {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  background: #fffdf8;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(38, 50, 56, 0.05);
}

.admin-announcement-item.selected {
  outline: 2px solid #283618;
}

.admin-announcement-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.admin-announcement-status {
  font-size: 0.74rem;
  font-weight: 700;
  color: #6b705c;
}

.admin-announcement-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.admin-announcement-item p {
  margin-bottom: 0;
  color: #68727d;
  font-size: 0.88rem;
}

.announcement-editor {
  min-height: 420px;
}

.announcement-editor-empty {
  min-height: 330px;
  display: grid;
  place-items: center;
  color: #78828c;
  text-align: center;
}

.announcement-editor-form.hidden {
  display: none;
}

.announcement-lang-panel {
  display: none;
}

.announcement-lang-panel.active {
  display: grid;
  gap: 18px;
}

.admin-backend-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: 18px;
  background: #f1eee5;
  color: #59636d;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .announcement-admin-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .admin-content-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .admin-content-tab {
    flex: 1 0 auto;
  }
}


.admin-backend-note.live {
  background: #eef3e1;
  border-color: rgba(40, 54, 24, 0.16);
  color: #3d4c2d;
}

.admin-backend-note.live strong {
  color: #283618;
}

#announcementId[readonly] {
  background: #f3f1eb;
  color: #6b7280;
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}


/* v0.8 content management */
.management-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.management-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #52606d;
  font-size: 0.88rem;
  font-weight: 700;
}

.management-toolbar select {
  border: 1px solid #cbd2d9;
  border-radius: 999px;
  padding: 9px 36px 9px 14px;
  background: #fffdf8;
  font: inherit;
  font-weight: 700;
}

.management-count {
  color: #7b8490;
  font-size: 0.86rem;
  font-weight: 700;
}

.management-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.management-list-item {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(31, 41, 51, 0.09);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 9px 24px rgba(38, 50, 56, 0.045);
  text-align: left;
  cursor: pointer;
}

.management-list-item:hover {
  border-color: rgba(40, 54, 24, 0.28);
}

.management-list-item.selected {
  border-color: #283618;
  box-shadow: 0 0 0 2px rgba(40, 54, 24, 0.13);
}

.management-list-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.management-list-item h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.3;
}

.management-list-item p {
  margin: 0;
  color: #68727d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ecefe2;
  color: #43512f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-pill[data-status="published"],
.status-pill[data-status="active"] {
  background: #e5edc3;
  color: #304017;
}

.status-pill[data-status="draft"] {
  background: #eeeae0;
  color: #665f51;
}

.status-pill[data-status="ready"] {
  background: #e8edf3;
  color: #44576b;
}

.status-pill[data-status="hidden"] {
  background: #efe7e1;
  color: #76584b;
}

.management-editor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.management-editor-header h3 {
  margin: 9px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.record-id {
  max-width: 44%;
  color: #9299a0;
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.management-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.management-actions-right {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.danger-button {
  border: 1px solid #9c4d46;
  background: transparent;
  color: #8b3933;
}

.danger-button:hover {
  background: #f7ecea;
}

.newsletter-management-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.newsletter-management-editor {
  min-height: 570px;
}

.newsletter-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.preview-heading {
  margin: 0 0 13px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.newsletter-management-actions {
  border-top: 1px solid rgba(31, 41, 51, 0.08);
  padding-top: 22px;
}

.empty-management-list {
  padding: 24px;
  border: 1px dashed rgba(31, 41, 51, 0.16);
  border-radius: 18px;
  color: #78828c;
  background: rgba(255, 253, 248, 0.55);
  text-align: center;
}

@media (max-width: 1050px) {
  .newsletter-management-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 850px) {
  .newsletter-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .management-list {
    grid-template-columns: 1fr;
  }

  .management-toolbar,
  .management-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .management-actions-right {
    justify-content: stretch;
    flex-direction: column;
  }

  .management-actions .button,
  .management-actions-right .button {
    width: 100%;
  }

  .record-id {
    display: none;
  }
}
