:root {
  --travel-green: #00d37f;
  --travel-pine: #022b1b;
  --travel-white: #f9f8f6;
  --travel-surface: #ffffff;
  --travel-pine-4: rgba(2, 43, 27, 0.04);
  --travel-pine-8: rgba(2, 43, 27, 0.08);
  --travel-pine-12: rgba(2, 43, 27, 0.12);
  --travel-pine-16: rgba(2, 43, 27, 0.16);
  --travel-pine-28: rgba(2, 43, 27, 0.28);
  --travel-green-12: rgba(0, 211, 127, 0.12);
  --travel-shadow: 0 18px 48px rgba(2, 43, 27, 0.12);
  --travel-shadow-soft: 0 10px 30px rgba(2, 43, 27, 0.1);
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --type-heading-line: 1.04;
  --type-body-line: 1.45;
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-72: 72px;
  --space-80: 80px;
  --space-96: 96px;
  --radius-small: 12px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-x-large: 32px;
  --radius-2x-large: 40px;
  --radius-pill: 999px;
  --radius-button: 300px;
  --radius-input: var(--radius-medium);
  --radius-card: var(--radius-medium);
  --radius-image: var(--radius-medium);
  --button-font-small: 14px;
  --button-font-medium: 14px;
  --button-font-large: 16px;
  --button-line-small: 20px;
  --button-line-medium: 24px;
  --button-line-large: 24px;
  --button-weight: 600;
  --button-height-small: 36px;
  --button-height-medium: 48px;
  --button-height-large: 56px;
  --button-padding-small: 8px 12px;
  --button-padding-medium: 12px 24px;
  --button-padding-large: 16px 24px;
  --button-content-gap: 8px;
  --button-primary-bg: var(--travel-green);
  --button-primary-hover-bg: rgba(0, 211, 127, 0.82);
  --button-primary-text: var(--travel-pine);
  --button-context-primary-bg: var(--travel-pine);
  --button-context-primary-hover-bg: rgba(2, 43, 27, 0.86);
  --button-context-primary-text: var(--travel-surface);
  --button-secondary-bg: transparent;
  --button-secondary-text: var(--travel-pine);
  --button-secondary-hover-bg: var(--travel-pine-8);
  --button-secondary-border: var(--travel-pine);
  --button-flat-bg: transparent;
  --button-flat-text: var(--travel-pine);
  --button-flat-hover-bg: var(--travel-pine-8);
  --button-disabled-bg: var(--travel-pine-8);
  --button-disabled-text: rgba(2, 43, 27, 0.42);
  --button-loading-bg: var(--travel-pine-8);
  --button-loader-active: var(--travel-pine);
  --button-loader-inactive: var(--travel-pine-16);
  --button-focus-outline: 2px solid var(--travel-pine);
  --button-focus-outline-offset: 4px;
  --chip-height: 36px;
  --chip-padding: 0 14px;
  --chip-bg: var(--travel-pine-8);
  --chip-text: var(--travel-pine);
  --chip-selected-bg: var(--travel-pine);
  --chip-selected-text: var(--travel-surface);
  --input-height: 56px;
  --input-border: var(--travel-pine-12);
  --input-border-hover: var(--travel-pine-28);
  --input-focus-border: var(--travel-pine);
  --input-focus-ring: 0 0 0 4px rgba(2, 43, 27, 0.08);
  --motion-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-duration-fast: 180ms;
  --motion-duration-medium: 260ms;
  --motion-duration-section: 680ms;
  --motion-duration-image: 900ms;
}

body {
  background: var(--travel-white);
  color: var(--travel-pine);
  font-family: var(--font-sans);
  line-height: var(--type-body-line);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.make-page a,
body.make-page button,
body.make-page summary,
body.make-page input,
body.make-page textarea,
body.make-page select {
  transition-timing-function: var(--motion-ease-standard);
}

body.make-page input[type="checkbox"] {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  margin: 0;
  border: 2px solid var(--travel-pine);
  border-radius: 4px;
  appearance: none;
  background-color: var(--travel-surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  box-shadow: 0 2px 8px rgba(2, 43, 27, 0.08);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

body.make-page input[type="checkbox"]:checked {
  border-color: var(--travel-pine);
  background-color: var(--travel-pine);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.4 8.1 6.6 11.2 12.8 4.8' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.make-page input[type="checkbox"]:hover {
  box-shadow: 0 5px 14px rgba(2, 43, 27, 0.14);
}

body.make-page input[type="checkbox"]:active {
  transform: scale(0.94);
}

body.make-page input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(2, 43, 27, 0.16);
  outline-offset: 3px;
}

body.make-page input[type="checkbox"]:disabled {
  border-color: rgba(2, 43, 27, 0.14);
  background-color: rgba(2, 43, 27, 0.08);
  box-shadow: none;
  cursor: not-allowed;
}

body.make-page input[type="checkbox"]:disabled:checked {
  border-color: rgba(2, 43, 27, 0.14);
  background-color: rgba(2, 43, 27, 0.12);
  opacity: 0.78;
}

.app-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: block;
  background: #fffefc;
  color: var(--travel-pine);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.app-preloader.is-done {
  opacity: 0;
  pointer-events: none;
}

.app-preloader[hidden] {
  display: none !important;
}

.app-preloader-seen .app-preloader {
  display: none !important;
}

.app-preloader__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.app-preloader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(280px, 24vw, 360px);
  height: auto;
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.96);
  animation: app-preloader-logo 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.app-preloader__pen-motion {
  position: absolute;
  left: 50%;
  bottom: 80px;
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
  overflow: visible;
  transform: translateX(-50%);
}

.app-preloader__line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.95;
}

.app-preloader__pen {
  opacity: 0;
  transform-origin: 0 0;
}

.app-preloader__pen-image {
  display: block;
}

@keyframes app-preloader-logo {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 680px) {
  .app-preloader__logo {
    width: clamp(220px, 68vw, 280px);
  }

  .app-preloader__pen-motion {
    width: clamp(170px, 52vw, 210px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-preloader {
    transition-duration: 120ms;
  }

  .app-preloader__logo {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
    animation: none;
  }

  .app-preloader__pen-motion {
    display: none;
  }
}

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

h1,
.home-redesign__hero-copy h1,
.redesign-article__headline h1,
.home-redesign__section h2,
.redesign-travel-cta__card h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: var(--type-heading-line);
  letter-spacing: 0;
}

.make-button,
.home-redesign__button,
.redesign-travel-cta__form button,
.make-comment-form button,
.admin-button {
  min-height: var(--button-height-medium);
  padding: var(--button-padding-medium);
  border-radius: var(--radius-button);
  font-family: var(--font-sans);
  font-size: var(--button-font-medium);
  font-weight: var(--button-weight);
  line-height: var(--button-line-medium);
  box-shadow: none;
  transition:
    background-color var(--motion-duration-fast) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) var(--motion-ease-standard),
    color var(--motion-duration-fast) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    transform var(--motion-duration-fast) var(--motion-ease-standard);
}

.make-button:hover,
.home-redesign__button:hover,
.redesign-travel-cta__form button:hover,
.make-comment-form button:hover,
.admin-button:hover {
  transform: translate3d(0, -1px, 0);
}

.make-button:active,
.home-redesign__button:active,
.redesign-travel-cta__form button:active,
.make-comment-form button:active,
.admin-button:active {
  transform: translate3d(0, 0, 0) scale(0.985);
}

.make-button--primary,
.home-redesign__button--accent,
.redesign-travel-cta__form button,
.admin-button--primary {
  border-color: transparent;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.make-button--primary:hover,
.home-redesign__button--accent:hover,
.redesign-travel-cta__form button:hover,
.admin-button--primary:hover {
  background: var(--button-primary-hover-bg);
  color: var(--button-primary-text);
}

.make-button--dark,
.make-button--primary-context,
.home-redesign__button--dark,
.admin-button--secondary {
  border-color: transparent;
  background: var(--button-context-primary-bg);
  color: var(--button-context-primary-text);
}

.make-button--dark:hover,
.make-button--primary-context:hover,
.home-redesign__button--dark:hover,
.admin-button--secondary:hover {
  background: var(--button-context-primary-hover-bg);
  color: var(--button-context-primary-text);
}

.make-button--secondary,
.make-button--ghost,
.home-redesign__button--site,
.home-redesign__button--outline,
.admin-button--ghost {
  border: 1px solid var(--button-secondary-border);
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}

.make-button--secondary:hover,
.make-button--ghost:hover,
.home-redesign__button--site:hover,
.home-redesign__button--outline:hover,
.admin-button--ghost:hover {
  background: var(--button-secondary-hover-bg);
  color: var(--button-secondary-text);
}

.make-button--flat {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
}

.make-button--flat:hover {
  background: rgba(2, 43, 27, 0.06);
  color: var(--travel-pine);
}

.make-button:focus-visible,
.home-redesign__button:focus-visible,
.redesign-travel-cta__form button:focus-visible,
.admin-button:focus-visible,
.make-search-button:focus-visible,
.make-nav__button:focus-visible {
  outline: var(--button-focus-outline);
  outline-offset: var(--button-focus-outline-offset);
}

.make-button:disabled,
.admin-button:disabled,
button[disabled] {
  background: var(--button-disabled-bg);
  color: var(--button-disabled-text);
  cursor: not-allowed;
}

.make-navbar__cta,
.make-navbar__desktop-link {
  min-height: var(--button-height-small);
  padding: var(--button-padding-small);
  font-size: var(--button-font-small);
  line-height: var(--button-line-small);
}

.make-card,
.make-featured-card,
.home-redesign__rail-card,
.home-redesign__answer-grid article,
.home-redesign__cta-card,
.redesign-article__paper,
.redesign-side-card,
.redesign-tour-card,
.make-comment-form-card,
.make-comment-card,
.admin-panel,
.ui-card {
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-card);
  background: var(--travel-surface);
  box-shadow: var(--travel-shadow-soft);
}

.make-card--clickable {
  position: relative;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.make-card--clickable:hover {
  border-color: rgba(2, 43, 27, 0.18);
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.12);
  transform: translateY(-2px);
}

.make-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  color: inherit;
  text-decoration: none;
}

.make-card__overlay:focus-visible {
  outline: var(--button-focus-outline);
  outline-offset: 4px;
}

.make-card--clickable .make-badge,
.make-card--clickable .make-card__rank {
  position: relative;
  z-index: 3;
}

.home-redesign__hero-media,
.home-redesign__news-image,
.home-redesign__topic-image,
.home-redesign__rail-image,
.redesign-article__hero,
.redesign-side-card__image,
.redesign-tour-card__media,
.make-card__image {
  border-radius: var(--radius-image);
}

.make-tag,
.home-redesign__pills a,
.make-badge,
.ui-chip {
  min-height: var(--chip-height);
  padding: var(--chip-padding);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 13px;
  font-weight: 600;
}

.make-tag:hover,
.make-tag--active,
.home-redesign__pills a:hover,
.home-redesign__pills a.is-active,
.ui-chip.is-selected {
  background: var(--chip-selected-bg);
  color: var(--chip-selected-text);
}

input:where(:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"])),
textarea,
select,
.admin-input,
.admin-select,
.admin-textarea,
.redesign-travel-cta__form input {
  min-height: var(--input-height);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-input);
  background: var(--travel-surface);
  color: var(--travel-pine);
  box-shadow: none;
  transition:
    border-color var(--motion-duration-fast) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    background-color var(--motion-duration-fast) var(--motion-ease-standard);
}

input:where(:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):not(:disabled):not([readonly]):hover),
textarea:where(:not(:disabled):not([readonly]):hover),
select:where(:not(:disabled):hover),
.admin-input:hover,
.admin-select:hover,
.admin-textarea:hover {
  border-color: var(--input-border-hover);
}

input:where(:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="color"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]):focus),
textarea:focus,
select:focus,
.admin-input:focus-visible,
.admin-select:focus-visible,
.admin-textarea:focus-visible {
  border-color: var(--input-focus-border);
  box-shadow: var(--input-focus-ring);
  outline: 0;
}

.home-redesign__hero {
  padding-top: var(--space-80);
}

.home-redesign__hero-media {
  box-shadow: var(--travel-shadow);
}

.home-redesign__section {
  padding-block: var(--space-80);
}

.home-redesign__latest {
  padding-top: 0;
}

.redesign-article__top {
  padding-top: var(--space-56);
}

.redesign-article__paper {
  border-radius: var(--radius-large);
}

.redesign-travel-cta__card {
  border-radius: var(--radius-large);
}

/* Premium motion layer */
body.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--motion-duration-section) var(--motion-ease-emphasis),
    transform var(--motion-duration-section) var(--motion-ease-emphasis);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready .motion-reveal.motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.motion-ready .motion-media {
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(0.94);
  transition:
    opacity var(--motion-duration-image) var(--motion-ease-emphasis),
    transform var(--motion-duration-image) var(--motion-ease-emphasis),
    filter var(--motion-duration-image) var(--motion-ease-emphasis);
  transition-delay: var(--motion-delay, 0ms);
}

body.motion-ready .motion-media.motion-in {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

body.make-page .make-nav__panel,
body.make-page .make-navbar__account-menu,
body.make-page .write-coauthor-popover,
body.make-page .profile-interests-modal__dialog {
  transform-origin: top center;
  transition:
    opacity var(--motion-duration-medium) var(--motion-ease-emphasis),
    transform var(--motion-duration-medium) var(--motion-ease-emphasis),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard);
}

body.make-page .make-navbar__tour-pill,
body.make-page .make-navbar__write,
body.make-page .make-navbar__notify,
body.make-page .make-navbar__avatar,
body.make-page .make-navbar__login,
body.make-page .make-search-button,
body.make-page .make-search__close,
body.make-page .make-nav__button,
body.make-page .make-nav > a,
body.make-page .make-tag,
body.make-page .home-redesign__pills a,
body.make-page .ui-chip {
  transition:
    color var(--motion-duration-fast) var(--motion-ease-standard),
    background-color var(--motion-duration-fast) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    transform var(--motion-duration-fast) var(--motion-ease-standard);
}

body.make-page .make-navbar__tour-pill:hover,
body.make-page .make-navbar__write:hover,
body.make-page .make-navbar__notify:hover,
body.make-page .make-navbar__avatar:hover,
body.make-page .make-navbar__login:hover,
body.make-page .make-search-button:hover,
body.make-page .make-search__close:hover,
body.make-page .make-nav__button:hover,
body.make-page .make-nav > a:hover,
body.make-page .make-tag:hover,
body.make-page .home-redesign__pills a:hover,
body.make-page .ui-chip:hover {
  transform: translate3d(0, -1px, 0);
}

body.make-page .home-redesign__news-card,
body.make-page .home-redesign__rail-card,
body.make-page .home-redesign__answer-grid article,
body.make-page .home-redesign__cta-card,
body.make-page .redesign-side-card,
body.make-page .redesign-tour-card,
body.make-page .profile-publication-card,
body.make-page .profile-settings-card,
body.make-page .profile-mobile-identity,
body.make-page .collab-benefits article,
body.make-page .collab-author-card,
body.make-page .collab-showcase article,
body.make-page .collab-faq details {
  transition:
    border-color var(--motion-duration-medium) var(--motion-ease-standard),
    box-shadow var(--motion-duration-medium) var(--motion-ease-standard),
    transform var(--motion-duration-medium) var(--motion-ease-standard);
}

body.make-page .home-redesign__news-card:hover,
body.make-page .home-redesign__rail-card:hover,
body.make-page .home-redesign__answer-grid article:hover,
body.make-page .home-redesign__cta-card:hover,
body.make-page .redesign-side-card:hover,
body.make-page .redesign-tour-card:hover,
body.make-page .profile-publication-card:hover,
body.make-page .profile-settings-card:hover,
body.make-page .profile-mobile-identity:hover,
body.make-page .collab-benefits article:hover,
body.make-page .collab-author-card:hover,
body.make-page .collab-showcase article:hover,
body.make-page .collab-faq details:hover {
  border-color: rgba(2, 43, 27, 0.16);
  box-shadow: 0 22px 54px rgba(2, 43, 27, 0.1);
  transform: translate3d(0, -3px, 0);
}

body.make-page .home-redesign__hero-media,
body.make-page .home-redesign__news-image,
body.make-page .home-redesign__topic-image,
body.make-page .home-redesign__rail-image,
body.make-page .redesign-article__hero,
body.make-page .redesign-side-card__image,
body.make-page .redesign-tour-card__media,
body.make-page .profile-publication-card__image,
body.make-page .collab-hero__visual,
body.make-page .collab-showcase__media {
  overflow: hidden;
}

body.make-page .home-redesign__hero-media img,
body.make-page .home-redesign__news-image img,
body.make-page .home-redesign__topic-image img,
body.make-page .home-redesign__rail-image img,
body.make-page .redesign-article__hero img,
body.make-page .redesign-side-card__image img,
body.make-page .redesign-tour-card__media img,
body.make-page .profile-publication-card__image img,
body.make-page .collab-hero__visual img,
body.make-page .collab-showcase__media img {
  transition:
    transform 900ms var(--motion-ease-emphasis),
    filter 900ms var(--motion-ease-emphasis);
}

body.make-page .home-redesign__news-card:hover .home-redesign__news-image img,
body.make-page .home-redesign__rail-card:hover .home-redesign__rail-image img,
body.make-page .redesign-side-card:hover .redesign-side-card__image img,
body.make-page .redesign-tour-card:hover .redesign-tour-card__media img,
body.make-page .profile-publication-card:hover .profile-publication-card__image img,
body.make-page .collab-showcase article:hover .collab-showcase__media img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

body.make-page .home-redesign__news-card {
  border-color: transparent;
  box-shadow: none;
}

body.make-page .home-redesign__news-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body.make-page .home-redesign__news-image {
  position: relative;
  isolation: isolate;
  transition: filter 420ms var(--motion-ease-standard);
}

body.make-page .home-redesign__news-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(180deg, rgba(2, 43, 27, 0), rgba(2, 43, 27, 0.08));
  opacity: 0;
  transition: opacity 420ms var(--motion-ease-standard);
  pointer-events: none;
}

body.make-page .home-redesign__news-card:hover .home-redesign__news-image::after {
  opacity: 1;
}

body.make-page .home-redesign__news-card:hover .home-redesign__news-image img {
  transform: scale(1.018);
  filter: saturate(1.03) contrast(1.015);
}

body.make-page .home-redesign__news-card h3 a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 240ms var(--motion-ease-standard),
    text-decoration-color 240ms var(--motion-ease-standard);
}

body.make-page .home-redesign__news-card:hover h3 a {
  color: var(--travel-pine);
  text-decoration-color: rgba(2, 43, 27, 0.28);
}

body.make-page .home-redesign__news-card p {
  transition: color 240ms var(--motion-ease-standard);
}

body.make-page .home-redesign__news-card:hover p {
  color: rgba(2, 43, 27, 0.7);
}

body.motion-reduced .motion-reveal,
body.motion-reduced .motion-media {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready .motion-reveal,
  body.motion-ready .motion-media {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 780px) {
  .home-redesign__hero {
    padding-top: var(--space-48);
  }

  .home-redesign__section {
    padding-block: var(--space-56);
  }

  .home-redesign__latest {
    padding-block: 0;
  }
}

.make-home-redesign-page .make-navbar {
  background: var(--travel-white);
  box-shadow: none;
}

.make-home-redesign-page .make-navbar::before,
.make-home-redesign-page .make-navbar::after,
.make-home-redesign-page .make-navbar__inner::before,
.make-home-redesign-page .make-navbar__inner::after {
  content: none;
  display: none;
}

.make-home-redesign-page .make-navbar__cta {
  box-shadow: none;
}

.make-home-redesign-page .make-nav__button,
.make-home-redesign-page .make-nav__button.active,
.make-home-redesign-page .make-nav__button:hover,
.make-home-redesign-page .make-nav__item.is-open .make-nav__button {
  background: transparent;
  color: var(--travel-pine);
}

.make-home-redesign-page .home-redesign__hero-copy h1 {
  max-width: 420px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}

.make-home-redesign-page .home-redesign__hero-media {
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: none;
}

.make-home-redesign-page .home-redesign__hero-media::before,
.make-home-redesign-page .home-redesign__hero-media::after {
  content: none;
  display: none;
}

.make-home-redesign-page .home-redesign__hero-media img {
  border-radius: 0;
}

.make-home-redesign-page .home-redesign__follow {
  gap: var(--space-24);
  padding-top: var(--space-56);
}

.make-home-redesign-page .home-redesign__follow p {
  max-width: 920px;
  color: var(--travel-pine);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
}

.make-home-redesign-page .home-redesign__socials {
  gap: var(--space-24);
  justify-content: center;
}

.make-home-redesign-page .home-redesign__socials a {
  width: 48px;
  height: 48px;
  border: 2px solid var(--travel-pine);
  background: transparent;
  color: var(--travel-pine);
  font-size: 0;
  box-shadow: none;
}

.make-home-redesign-page .home-redesign__socials a:hover {
  background: var(--travel-pine);
  color: var(--travel-white);
}

.make-home-redesign-page .home-redesign__socials svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.make-home-redesign-page .make-footer {
  border-top: 1px solid var(--travel-pine-8);
  background: var(--travel-white);
}

.make-home-redesign-page .make-footer,
.make-home-redesign-page .make-footer a,
.make-home-redesign-page .make-footer p,
.make-home-redesign-page .make-footer h4,
.make-home-redesign-page .make-footer .make-brand__text {
  color: var(--travel-pine);
}

.make-home-redesign-page .make-footer::before,
.make-home-redesign-page .make-footer::after {
  content: none;
  display: none;
}

.make-article-redesign-page .make-navbar {
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--travel-pine-8);
  background: var(--travel-white);
  box-shadow: none;
}

.make-article-redesign-page .make-navbar::before,
.make-article-redesign-page .make-navbar::after,
.make-article-redesign-page .make-navbar__inner::before,
.make-article-redesign-page .make-navbar__inner::after {
  content: none;
  display: none;
}

.make-article-redesign-page .make-navbar__inner {
  width: min(100% - 40px, 1280px);
  min-height: 72px;
}

.make-article-redesign-page .make-brand {
  position: static;
  gap: 10px;
  transform: none;
}

.make-article-redesign-page .make-brand__mark {
  display: inline-flex;
}

.make-article-redesign-page .make-brand__text {
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.make-article-redesign-page .make-nav,
.make-article-redesign-page .make-search-button,
.make-article-redesign-page .make-navbar__desktop-link {
  display: flex;
}

.make-article-redesign-page .make-nav-toggle {
  display: none;
}

.make-article-redesign-page .make-nav__button,
.make-article-redesign-page .make-nav__button.active,
.make-article-redesign-page .make-nav__button:hover,
.make-article-redesign-page .make-nav__item.is-open .make-nav__button {
  background: transparent;
  color: var(--travel-pine);
}

.make-article-redesign-page .make-navbar__actions {
  margin-left: 0;
}

.make-article-redesign-page .make-navbar__cta {
  min-height: var(--button-height-small);
  padding: var(--button-padding-small);
  border-radius: var(--radius-button);
  background: var(--travel-green);
  color: var(--travel-pine);
  box-shadow: none;
  font-size: var(--button-font-small);
  font-weight: var(--button-weight);
  text-transform: none;
}

.make-article-redesign-page .redesign-article__headline h1 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
}

.make-article-redesign-page .redesign-article__summary {
  display: none;
}

.make-article-redesign-page .redesign-article__paper {
  border-radius: var(--radius-medium);
  box-shadow: none;
}

.make-article-redesign-page .redesign-article__sticky {
  display: grid;
  gap: var(--space-40);
}

.make-article-redesign-page .redesign-article__sticky h2 {
  margin: 0 0 calc(var(--space-8) * -1);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.make-article-redesign-page .redesign-side-card,
.make-article-redesign-page .redesign-tour-card {
  overflow: visible;
  display: block;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--travel-pine);
  text-decoration: none;
}

.make-article-redesign-page .redesign-side-card {
  border-radius: var(--radius-medium);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.make-article-redesign-page .redesign-side-card:hover,
.make-article-redesign-page .redesign-side-card:focus-visible {
  transform: translateY(-2px);
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-side-card:focus-visible {
  outline: 2px solid var(--travel-green);
  outline-offset: 5px;
}

.make-article-redesign-page .redesign-tour-heading {
  margin-top: calc(var(--space-8) * -1);
}

.make-article-redesign-page .redesign-side-card__image,
.make-article-redesign-page .redesign-tour-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--travel-surface);
}

.make-article-redesign-page .redesign-side-card__image img {
  transition: transform 240ms ease;
}

.make-article-redesign-page .redesign-side-card:hover .redesign-side-card__image img,
.make-article-redesign-page .redesign-side-card:focus-visible .redesign-side-card__image img {
  transform: scale(1.035);
}

.make-article-redesign-page .redesign-side-card__image img,
.make-article-redesign-page .redesign-tour-card__media img,
.make-article-redesign-page .redesign-side-card__image span {
  height: 220px;
}

.make-article-redesign-page .redesign-side-card__body,
.make-article-redesign-page .redesign-tour-card__body {
  padding: var(--space-16) 0 0;
}

.make-article-redesign-page .redesign-side-card__body span {
  display: none;
}

.make-article-redesign-page .redesign-tour-card__body span {
  color: var(--travel-green);
  font-size: 12px;
  font-weight: 700;
}

.make-article-redesign-page .redesign-side-card__body h3,
.make-article-redesign-page .redesign-tour-card__body h3 {
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.make-article-redesign-page .redesign-side-card:hover .redesign-side-card__body h3,
.make-article-redesign-page .redesign-side-card:focus-visible .redesign-side-card__body h3 {
  color: var(--travel-green);
}

.make-article-redesign-page .redesign-side-card__body p,
.make-article-redesign-page .redesign-tour-card__body p {
  margin-top: var(--space-12);
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.make-article-redesign-page .redesign-tour-card__body a,
.make-article-redesign-page .redesign-tour-card__link,
.make-article-redesign-page .redesign-article__all-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-small);
  background: var(--travel-surface);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.make-article-redesign-page .redesign-tour-card__body a,
.make-article-redesign-page .redesign-tour-card__link {
  width: 100%;
  margin-top: var(--space-16);
  background: var(--travel-green);
}

.make-article-redesign-page .redesign-tour-card {
  overflow: hidden;
  padding: var(--space-12);
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-medium);
  background: var(--travel-pine);
  color: var(--travel-surface);
}

.make-article-redesign-page .redesign-tour-card--clickable {
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.make-article-redesign-page .redesign-tour-card--clickable:hover,
.make-article-redesign-page .redesign-tour-card--clickable:focus-visible {
  border-color: var(--travel-green);
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.18);
  transform: translateY(-2px);
}

.make-article-redesign-page .redesign-tour-card--clickable:focus-visible {
  outline: var(--button-focus-outline);
  outline-offset: 4px;
}

.make-article-redesign-page .redesign-tour-card__media {
  border-radius: var(--radius-small);
}

.make-article-redesign-page .redesign-tour-card__media img {
  height: 176px;
}

.make-article-redesign-page .redesign-tour-card__body {
  padding: var(--space-16) var(--space-4) var(--space-4);
}

.make-article-redesign-page .redesign-tour-card__body span {
  color: var(--travel-green);
}

.make-article-redesign-page .redesign-tour-card__body h3,
.make-article-redesign-page .redesign-tour-card__body p {
  color: var(--travel-surface);
}

.make-article-redesign-page .redesign-tour-card__facts {
  display: grid;
  gap: var(--space-8);
  margin: var(--space-16) 0;
}

.make-article-redesign-page .redesign-tour-card__facts div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.make-article-redesign-page .redesign-tour-card__facts dt,
.make-article-redesign-page .redesign-tour-card__facts dd {
  margin: 0;
  color: var(--travel-surface);
  font-size: 13px;
  line-height: 1.3;
}

.make-article-redesign-page .redesign-tour-card__facts dt {
  opacity: 0.72;
}

.make-article-redesign-page .redesign-tour-card__facts dd {
  font-weight: 700;
  text-align: right;
}

.make-article-redesign-page .redesign-tour-card__body a,
.make-article-redesign-page .redesign-tour-card__link {
  border-radius: var(--radius-button);
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-tour-card__body .redesign-tour-card__link {
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-article__all-link {
  width: 100%;
  gap: var(--space-8);
  border: 1px solid var(--travel-pine-16);
  background: transparent;
}

.make-article-redesign-page .redesign-article__all-link:hover {
  border-color: var(--travel-pine);
}

.make-article-redesign-page .redesign-travel-cta {
  min-height: 560px;
  background: var(--travel-pine);
}

.make-article-redesign-page .redesign-travel-cta__image {
  display: block;
  opacity: 1;
}

.make-article-redesign-page .redesign-travel-cta__overlay {
  background: rgba(2, 43, 27, 0.28);
}

.make-article-redesign-page .redesign-travel-cta__card {
  background: rgba(2, 43, 27, 0.86);
}

.make-article-redesign-page .redesign-article__seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--space-22);
  margin-top: var(--space-56);
  padding: 30px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 24px;
  background: rgba(2, 43, 27, 0.08);
}

.make-article-redesign-page .redesign-article__seo-cta > div:first-child {
  max-width: 520px;
}

.make-article-redesign-page .redesign-article__seo-cta span,
.make-article-redesign-page .redesign-related-tours__head span,
.make-article-redesign-page .redesign-related-tour-card__kicker {
  color: var(--travel-pine-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.make-article-redesign-page .redesign-article__seo-cta h2,
.make-article-redesign-page .redesign-related-tours h2 {
  margin: var(--space-8) 0 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
}

.make-article-redesign-page .redesign-article__seo-cta p,
.make-article-redesign-page .redesign-related-tours__head p {
  max-width: 620px;
  margin: var(--space-12) 0 0;
  color: var(--travel-pine-muted);
  font-size: 16px;
  line-height: 1.55;
}

.make-article-redesign-page .redesign-article__seo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-12);
  min-width: 0;
}

.make-article-redesign-page .redesign-article__seo-cta-actions a,
.make-article-redesign-page .redesign-related-tour-card__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-20);
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-button);
  color: var(--travel-pine);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 220ms var(--motion-ease-standard),
    color 220ms var(--motion-ease-standard),
    transform 220ms var(--motion-ease-standard);
}

.make-article-redesign-page .redesign-article__seo-cta-actions a:first-child,
.make-article-redesign-page .redesign-related-tour-card:hover .redesign-related-tour-card__cta {
  background: var(--travel-pine);
  color: var(--travel-white);
}

.make-article-redesign-page .redesign-article__seo-cta-actions a:hover,
.make-article-redesign-page .redesign-related-tour-card:hover .redesign-related-tour-card__cta {
  transform: translate3d(0, -1px, 0);
}

.make-article-redesign-page .redesign-related-tours {
  margin-top: var(--space-56);
  padding-top: var(--space-40);
  border-top: 1px solid var(--travel-pine-12);
}

.make-article-redesign-page .redesign-related-tours--after-comments {
  margin-top: 0;
  padding: var(--space-72) 0 var(--space-80);
  border-top: 1px solid var(--travel-pine-12);
  background: var(--travel-white);
}

.make-article-redesign-page .redesign-related-tours--after-comments .redesign-related-tours__head {
  max-width: 760px;
}

.make-article-redesign-page .redesign-related-tours__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-24);
}

.make-article-redesign-page .redesign-related-tours--after-comments .redesign-related-tours__grid {
  gap: clamp(20px, 2vw, 28px);
}

.make-article-redesign-page .redesign-related-tour-card {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--travel-pine-12);
  border-radius: 24px;
  background: var(--travel-white);
  box-shadow: 0 18px 48px rgba(2, 43, 27, 0.055);
  color: var(--travel-pine);
  text-decoration: none;
  transition:
    border-color 260ms var(--motion-ease-standard),
    box-shadow 260ms var(--motion-ease-standard),
    transform 260ms var(--motion-ease-standard);
}

.make-article-redesign-page .redesign-related-tour-card__media {
  display: block;
  aspect-ratio: 16 / 9.8;
  overflow: hidden;
  background: var(--travel-white);
}

.make-article-redesign-page .redesign-related-tour-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--motion-ease-enter);
}

.make-article-redesign-page .redesign-related-tour-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 26px;
  background: var(--travel-white);
}

.make-article-redesign-page .redesign-related-tour-card:hover {
  border-color: rgba(2, 43, 27, 0.22);
  box-shadow: 0 24px 56px rgba(2, 43, 27, 0.09);
  transform: translate3d(0, -2px, 0);
}

.make-article-redesign-page .redesign-related-tour-card:hover .redesign-related-tour-card__media img {
  transform: scale(1.035);
}

.make-article-redesign-page .redesign-related-tour-card h3 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.make-article-redesign-page .redesign-related-tour-card p {
  margin: 0;
  color: var(--travel-pine-muted);
  font-size: 14px;
  line-height: 1.58;
}

.make-article-redesign-page .redesign-related-tour-card dl {
  display: grid;
  gap: 10px;
  margin: var(--space-6) 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--travel-pine-12);
}

.make-article-redesign-page .redesign-related-tour-card dl div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: var(--space-12);
  align-items: start;
}

.make-article-redesign-page .redesign-related-tour-card dt,
.make-article-redesign-page .redesign-related-tour-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.make-article-redesign-page .redesign-related-tour-card dt {
  color: var(--travel-pine-muted);
}

.make-article-redesign-page .redesign-related-tour-card dd {
  color: var(--travel-pine);
  font-weight: 700;
}

.make-article-redesign-page .redesign-related-tour-card__cta {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 760px) {
  .make-article-redesign-page .redesign-article__seo-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px;
    border-radius: 20px;
  }

  .make-article-redesign-page .redesign-article__seo-cta h2,
  .make-article-redesign-page .redesign-related-tours h2 {
    font-size: 24px;
  }

  .make-article-redesign-page .redesign-article__seo-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .make-article-redesign-page .redesign-article__seo-cta-actions a {
    width: 100%;
  }

  .make-article-redesign-page .redesign-related-tours__grid {
    grid-template-columns: 1fr;
  }

  .make-article-redesign-page .redesign-related-tours--after-comments {
    padding: var(--space-48) 0 var(--space-56);
  }

  .make-article-redesign-page .redesign-related-tour-card {
    border-radius: 20px;
  }

  .make-article-redesign-page .redesign-related-tour-card__body {
    padding: 20px;
  }

  .make-article-redesign-page .redesign-related-tour-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

.make-article-redesign-page .redesign-comments {
  padding: var(--space-80) 0;
  background: var(--travel-white);
}

.make-article-redesign-page .redesign-comments .make-shell {
  width: min(760px, calc(100% - 40px));
}

.make-article-redesign-page .redesign-comments__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-40);
}

.make-article-redesign-page .redesign-comments__head h2 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
}

.make-article-redesign-page .redesign-comments__head span {
  color: var(--travel-pine);
  font-size: 12px;
  font-weight: 600;
}

.make-article-redesign-page .redesign-comments__notice {
  margin-bottom: var(--space-24);
}

.make-article-redesign-page .redesign-comment-composer {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-40);
}

.make-article-redesign-page .redesign-comment-avatar {
  width: 32px;
  height: 32px;
  border: 1px solid var(--travel-pine-8);
  border-radius: 50%;
  background: var(--travel-surface);
  color: var(--travel-pine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.make-article-redesign-page .redesign-comment-composer__body {
  display: grid;
  gap: var(--space-12);
}

.make-article-redesign-page .redesign-comment-composer__label button,
.make-article-redesign-page .make-comment-reply,
.make-article-redesign-page .make-comment-menu {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: inherit;
  cursor: pointer;
}

.make-article-redesign-page .redesign-comment-composer__label button,
.make-article-redesign-page .redesign-comment-composer__label strong {
  font-size: 14px;
  font-weight: 600;
}

.make-article-redesign-page .redesign-comment-prompt {
  min-height: 44px;
  width: 100%;
  padding: 0 var(--space-16);
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-small);
  background: var(--travel-surface);
  color: var(--travel-pine);
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.make-article-redesign-page .make-comment-form {
  gap: var(--space-12);
}

.make-article-redesign-page .make-comment-field textarea {
  min-height: 128px;
  border-radius: var(--radius-small);
  background: var(--travel-surface);
}

.make-article-redesign-page .make-comment-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.make-article-redesign-page .make-comment-form__footer p {
  margin: 0;
  color: var(--travel-pine);
}

.make-article-redesign-page .make-comments-feed,
.make-article-redesign-page .make-comments-list {
  display: grid;
  gap: 0;
}

.make-article-redesign-page .make-comment-card,
.make-article-redesign-page .make-comment-empty {
  padding: var(--space-32) 0;
  border: 0;
  border-top: 1px solid var(--travel-pine-8);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.make-article-redesign-page .make-comment-card::before,
.make-article-redesign-page .make-comment-empty::before {
  content: none;
  display: none;
}

.make-article-redesign-page .make-comment-card__head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: var(--space-12);
  align-items: start;
  margin-bottom: var(--space-16);
}

.make-article-redesign-page .make-comment-card__head strong {
  margin: 0 0 var(--space-4);
  font-size: 15px;
  font-weight: 600;
}

.make-article-redesign-page .make-comment-card__head span {
  color: var(--travel-pine);
  font-size: 13px;
}

.make-article-redesign-page .make-comment-menu {
  padding: 0;
  font-size: 18px;
  line-height: 1;
}

.make-article-redesign-page .make-comment-card__body {
  color: var(--travel-pine);
  font-size: 16px;
  line-height: 1.65;
}

.make-article-redesign-page .make-comment-card__actions {
  gap: var(--space-24);
  margin-top: 20px;
}

.make-article-redesign-page .make-comment-like,
.make-article-redesign-page .make-comment-reply {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  box-shadow: none;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.make-article-redesign-page .make-comment-like:hover {
  transform: none;
  box-shadow: none;
}

.make-article-redesign-page .redesign-auth-modal[hidden] {
  display: none;
}

.make-article-redesign-page .redesign-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24);
}

.make-article-redesign-page .redesign-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 43, 27, 0.28);
}

.make-article-redesign-page .redesign-auth-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  padding: var(--space-56) var(--space-48);
  border-radius: var(--radius-medium);
  background: var(--travel-surface);
  color: var(--travel-pine);
  text-align: center;
  box-shadow: var(--travel-shadow-soft);
}

.make-article-redesign-page .redesign-auth-modal__close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--travel-pine);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.make-article-redesign-page .redesign-auth-modal__dialog h2 {
  margin: 0 auto var(--space-24);
  max-width: 460px;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
}

.make-article-redesign-page .redesign-auth-modal__dialog p {
  margin: 0 auto;
  max-width: 460px;
  color: var(--travel-pine);
  font-size: 15px;
  line-height: 1.5;
}

.make-article-redesign-page .redesign-auth-modal__actions {
  display: grid;
  gap: var(--space-16);
  width: min(340px, 100%);
  margin: var(--space-32) auto;
}

.make-article-redesign-page .redesign-auth-modal__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.make-article-redesign-page .redesign-auth-modal__button--secondary {
  border-color: var(--travel-pine-16);
}

.make-article-redesign-page .redesign-auth-modal__note {
  font-size: 12px;
}

body.auth-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .make-article-redesign-page .redesign-article__hero {
    height: auto;
    aspect-ratio: 980 / 640;
  }

  .make-article-redesign-page .redesign-article__sticky {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .make-article-redesign-page .make-nav,
  .make-article-redesign-page .make-navbar__desktop-link {
    display: none;
  }

  .make-article-redesign-page .make-nav.is-open {
    display: flex;
  }

  .make-article-redesign-page .make-nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .make-article-redesign-page .make-navbar__inner {
    width: min(100% - 20px, 1180px);
  }

  .make-article-redesign-page .make-brand {
    position: static;
    transform: none;
  }

  .make-article-redesign-page .redesign-side-card__image img,
  .make-article-redesign-page .redesign-tour-card__media img,
  .make-article-redesign-page .redesign-side-card__image span {
    height: 190px;
  }

  .make-article-redesign-page .make-comment-form__footer {
    display: grid;
  }

  .make-article-redesign-page .redesign-auth-modal__dialog {
    padding: var(--space-48) var(--space-24) var(--space-32);
  }
}

.make-home-redesign-page .home-redesign__hero-copy h1 {
  font-family: var(--font-sans);
}

.make-home-redesign-page .home-redesign {
  padding-bottom: 0;
}

.make-home-redesign-page .home-redesign__latest > .make-shell > h2 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.make-home-redesign-page .home-redesign__news-image {
  height: 200px;
}

.make-home-redesign-page .home-redesign__follow p {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.25;
}

.make-home-redesign-page .home-redesign__exclusive .home-redesign__section-head h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.12;
}

.make-home-redesign-page .home-redesign__topics .home-redesign__section-head h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.12;
}

.make-home-redesign-page .home-redesign__answers h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.12;
}

.make-home-redesign-page .home-redesign__destination-guide {
  background: var(--travel-surface);
}

.make-home-redesign-page .home-redesign__destination-guide .home-redesign__section-head {
  align-items: end;
  margin-bottom: var(--space-32);
}

.make-home-redesign-page .home-redesign__eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-12);
  color: var(--travel-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.make-home-redesign-page .home-redesign__destination-guide h2 {
  max-width: 560px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.12;
}

.make-home-redesign-page .home-redesign__destination-guide .home-redesign__section-head p {
  max-width: 620px;
}

.make-home-redesign-page .home-redesign__guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: var(--space-24);
}

.make-home-redesign-page .home-redesign__guide-card {
  min-width: 0;
}

.make-home-redesign-page .home-redesign__guide-card--featured {
  grid-row: span 3;
}

.make-home-redesign-page .home-redesign__guide-card a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--travel-pine-8);
  border-radius: 18px;
  background: var(--travel-white);
  color: var(--travel-pine);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(2, 43, 27, 0.07);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.make-home-redesign-page .home-redesign__guide-card,
.make-home-redesign-page .home-redesign__guide-content {
  background: var(--travel-white);
}

.make-home-redesign-page .home-redesign__guide-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 43, 27, 0.16);
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.1);
}

.make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) a {
  grid-template-columns: 168px minmax(0, 1fr);
}

.make-home-redesign-page .home-redesign__guide-card--featured a {
  grid-template-rows: 320px minmax(0, 1fr);
}

.make-home-redesign-page .home-redesign__guide-media {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--travel-white);
}

.make-home-redesign-page .home-redesign__guide-media img,
.make-home-redesign-page .home-redesign__guide-media > span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  color: var(--travel-green);
  font-size: 20px;
  font-weight: 700;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.make-home-redesign-page .home-redesign__guide-card a:hover .home-redesign__guide-media img {
  transform: scale(1.035);
}

.make-home-redesign-page .home-redesign__guide-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: var(--space-24);
}

.make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) .home-redesign__guide-content {
  padding: 18px 20px;
}

.make-home-redesign-page .home-redesign__guide-label {
  color: var(--travel-green);
  font-size: 13px;
  font-weight: 700;
}

.make-home-redesign-page .home-redesign__guide-content strong {
  color: var(--travel-pine);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}

.make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) .home-redesign__guide-content strong {
  font-size: 17px;
  line-height: 1.22;
}

.make-home-redesign-page .home-redesign__guide-content > span:last-child {
  color: var(--travel-muted);
  font-size: 15px;
  line-height: 1.5;
}

.make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) .home-redesign__guide-content > span:last-child {
  font-size: 14px;
}

.make-home-redesign-page .home-redesign__popular-tours {
  overflow: hidden;
  background: var(--travel-surface);
}

.make-home-redesign-page .home-redesign__popular-tours h2 {
  max-width: 620px;
  margin: 0 auto var(--space-40);
  color: var(--travel-pine);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
}

.make-home-redesign-page .home-redesign__tour-carousel {
  position: relative;
}

.make-home-redesign-page .home-redesign__tour-rail {
  display: grid;
  grid-auto-columns: minmax(264px, 284px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 8px;
  scroll-snap-type: x mandatory;
  padding: 0 8px var(--space-32);
  scrollbar-width: none;
}

.make-home-redesign-page .home-redesign__tour-rail::-webkit-scrollbar {
  display: none;
}

.make-home-redesign-page .home-redesign__tour-card {
  min-width: 0;
  scroll-snap-align: start;
}

.make-home-redesign-page .home-redesign__tour-card a {
  position: relative;
  display: grid;
  min-height: 414px;
  grid-template-rows: 178px 1fr;
  overflow: hidden;
  border: 1px solid var(--travel-pine-8);
  border-radius: 12px;
  background: var(--travel-white);
  color: var(--travel-pine);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(2, 43, 27, 0.07);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.make-home-redesign-page .home-redesign__tour-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 43, 27, 0.18);
  box-shadow: 0 20px 44px rgba(2, 43, 27, 0.1);
}

.make-home-redesign-page .home-redesign__tour-media {
  position: relative;
  overflow: hidden;
  background: var(--travel-mist);
}

.make-home-redesign-page .home-redesign__tour-media img,
.make-home-redesign-page .home-redesign__tour-media > span:not(.home-redesign__tour-label):not(.home-redesign__tour-heart) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.make-home-redesign-page .home-redesign__tour-media > span:not(.home-redesign__tour-label):not(.home-redesign__tour-heart) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--travel-green);
  font-size: 22px;
  font-weight: 700;
}

.make-home-redesign-page .home-redesign__tour-label {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
  max-width: calc(100% - 80px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.08;
  box-shadow: 0 8px 18px rgba(2, 43, 27, 0.1);
}

.make-home-redesign-page .home-redesign__tour-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--travel-pine);
  box-shadow: 0 8px 18px rgba(2, 43, 27, 0.1);
}

.make-home-redesign-page .home-redesign__tour-heart svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-home-redesign-page .home-redesign__tour-body {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 20px;
}

.make-home-redesign-page .home-redesign__tour-duration {
  margin: 0;
  color: var(--travel-muted);
  font-size: 13px;
  font-weight: 600;
}

.make-home-redesign-page .home-redesign__tour-card h3 {
  margin: 0;
  color: var(--travel-pine);
  font-family: Inter, var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
}

.make-home-redesign-page .home-redesign__tour-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px 6px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--travel-pine);
  text-align: right;
}

.make-home-redesign-page .home-redesign__tour-price span {
  color: var(--travel-muted);
  font-size: 13px;
  font-weight: 500;
}

.make-home-redesign-page .home-redesign__tour-price s {
  color: #d21430;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.make-home-redesign-page .home-redesign__tour-price strong {
  color: var(--travel-pine);
  font-size: 18px;
  font-weight: 800;
}

.make-home-redesign-page .home-redesign__tour-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(238, 244, 240, 0.92);
  color: var(--travel-pine);
  box-shadow: 0 12px 30px rgba(2, 43, 27, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.make-home-redesign-page .home-redesign__tour-arrow:hover {
  background: var(--travel-white);
  transform: translateY(-50%) scale(1.04);
}

.make-home-redesign-page .home-redesign__tour-arrow--prev {
  left: -28px;
}

.make-home-redesign-page .home-redesign__tour-arrow--next {
  right: -28px;
}

.make-home-redesign-page .home-redesign__tour-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-home-redesign-page .home-redesign__popular-tours-link {
  width: fit-content;
  margin-top: var(--space-16);
}

.make-home-redesign-page .home-redesign__cta {
  padding-top: 0;
  padding-bottom: 0;
}

.make-home-redesign-page .home-redesign__cta-card {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
}

.make-home-redesign-page .home-redesign__cta-image {
  height: 300px;
  min-height: 0;
}

.make-home-redesign-page .home-redesign__cta-copy {
  gap: var(--space-12);
  padding: var(--space-32);
}

.make-home-redesign-page .home-redesign__cta-copy h2 {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

.make-home-redesign-page .home-redesign__cta-copy p {
  font-size: 15px;
  line-height: 1.45;
}

.make-article-redesign-page .redesign-article__back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: 0 var(--space-24);
  border: 0;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  margin-left: calc(var(--space-24) * -1);
}

.make-article-redesign-page .redesign-article__back:hover {
  background: var(--travel-pine-8);
}

@media (max-width: 720px) {
  .make-home-redesign-page .make-navbar__inner {
    width: min(100% - 40px, 1180px);
  }

  .make-home-redesign-page .make-search-button {
    display: none;
  }

  .make-home-redesign-page .home-redesign .make-shell {
    width: min(100% - 40px, 1230px);
  }

  .make-home-redesign-page .home-redesign__hero {
    padding: var(--space-24) 0 var(--space-56);
  }

  .make-home-redesign-page .home-redesign__hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-24);
  }

  .make-home-redesign-page .home-redesign__hero-media {
    order: 1;
    width: 100%;
    border-radius: var(--radius-medium);
  }

  .make-home-redesign-page .home-redesign__hero-media img {
    aspect-ratio: 1.42 / 1;
  }

  .make-home-redesign-page .home-redesign__hero-copy {
    order: 2;
    gap: var(--space-12);
  }

  .make-home-redesign-page .home-redesign__hero-copy time {
    font-size: 14px;
    font-weight: 500;
  }

  .make-home-redesign-page .home-redesign__hero-copy h1 {
    max-width: none;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
  }

  .make-home-redesign-page .home-redesign__hero-copy p {
    display: block;
    max-width: none;
    font-size: 16px;
    line-height: 1.45;
  }

  .make-home-redesign-page .home-redesign__button--site {
    display: none;
  }

  .make-home-redesign-page .home-redesign__hero-actions {
    margin-top: var(--space-12);
  }

  .make-home-redesign-page .home-redesign__latest > .make-shell > h2 {
    font-size: 24px;
  }

  .make-home-redesign-page .home-redesign__latest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .make-home-redesign-page .home-redesign__news-card {
    grid-template-columns: 0.9fr 1fr;
    align-items: start;
    gap: var(--space-16);
  }

  .make-home-redesign-page .home-redesign__news-image {
    height: 124px;
  }

  .make-home-redesign-page .home-redesign__news-card h3 {
    font-size: 18px;
  }

  .make-home-redesign-page .home-redesign__news-card p {
    grid-column: 2;
    margin-top: -8px;
  }

  .make-home-redesign-page .home-redesign__follow {
    padding-top: var(--space-48);
  }

  .make-home-redesign-page .home-redesign__follow p {
    max-width: 340px;
    font-size: 18px;
  }

  .make-home-redesign-page .home-redesign__exclusive .home-redesign__section-head h2 {
    font-size: 28px;
  }

  .make-home-redesign-page .home-redesign__destination-guide .home-redesign__section-head {
    align-items: start;
  }

  .make-home-redesign-page .home-redesign__destination-guide h2 {
    font-size: 28px;
  }

  .make-home-redesign-page .home-redesign__guide-grid {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .make-home-redesign-page .home-redesign__guide-card--featured {
    grid-row: auto;
  }

  .make-home-redesign-page .home-redesign__guide-card a,
  .make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) a,
  .make-home-redesign-page .home-redesign__guide-card--featured a {
    grid-template-columns: 1fr;
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .make-home-redesign-page .home-redesign__guide-content,
  .make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) .home-redesign__guide-content {
    padding: var(--space-20);
  }

  .make-home-redesign-page .home-redesign__guide-content strong,
  .make-home-redesign-page .home-redesign__guide-card:not(.home-redesign__guide-card--featured) .home-redesign__guide-content strong {
    font-size: 19px;
  }

  .make-home-redesign-page .home-redesign__popular-tours {
    padding-top: var(--space-56);
    padding-bottom: var(--space-56);
  }

  .make-home-redesign-page .home-redesign__popular-tours h2 {
    margin-bottom: var(--space-32);
    font-size: 28px;
    text-align: left;
  }

  .make-home-redesign-page .home-redesign__tour-rail {
    grid-auto-columns: minmax(246px, 78vw);
    gap: 16px;
    padding-inline: 4px;
    padding-bottom: 20px;
  }

  .make-home-redesign-page .home-redesign__tour-card a {
    min-height: 382px;
    grid-template-rows: 164px 1fr;
  }

  .make-home-redesign-page .home-redesign__tour-body {
    min-height: 218px;
    padding: 18px var(--space-16);
  }

  .make-home-redesign-page .home-redesign__tour-card h3 {
    font-size: 18px;
  }

  .make-home-redesign-page .home-redesign__tour-arrow {
    display: none;
  }

  .make-home-redesign-page .home-redesign__cta-card {
    grid-template-columns: 1fr;
  }

  .make-home-redesign-page .home-redesign__cta-image {
    min-height: 180px;
  }

  .make-home-redesign-page .home-redesign__cta-copy {
    padding: var(--space-24);
  }
}

.make-article-redesign-page .redesign-article__shell,
.make-article-redesign-page .redesign-article__grid,
.make-article-redesign-page .redesign-comments .make-shell {
  width: min(980px, calc(100% - 40px));
}

.make-article-redesign-page .redesign-article__hero {
  width: 100%;
  height: 640px;
  margin-inline: auto;
  border-radius: var(--radius-medium);
}

.make-article-redesign-page .redesign-article__hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.make-article-redesign-page .redesign-article__grid {
  grid-template-columns: minmax(0, 650px) minmax(280px, 302px);
  gap: 28px;
}

.make-article-redesign-page .redesign-article__aside {
  justify-self: stretch;
}

.make-article-redesign-page .redesign-article__all-link {
  min-height: 48px;
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-article__all-link:hover {
  background: var(--travel-pine);
  color: var(--travel-white);
}

.make-article-redesign-page .redesign-article__placeholder-content {
  display: grid;
  gap: var(--space-24);
  margin-top: var(--space-40);
  padding-top: var(--space-32);
  border-top: 1px solid var(--travel-pine-8);
}

.make-article-redesign-page .redesign-article__placeholder-content h2,
.make-article-redesign-page .redesign-article__placeholder-content h3 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.15;
}

.make-article-redesign-page .redesign-article__placeholder-content h2 {
  font-size: 32px;
}

.make-article-redesign-page .redesign-article__placeholder-content h3 {
  font-size: 22px;
}

.make-article-redesign-page .redesign-article__placeholder-content p,
.make-article-redesign-page .redesign-article__placeholder-content li,
.make-article-redesign-page .redesign-article__placeholder-content td,
.make-article-redesign-page .redesign-article__placeholder-content th {
  color: var(--travel-pine);
  font-size: 16px;
  line-height: 1.65;
}

.make-article-redesign-page .redesign-article__content-figure,
.make-article-redesign-page .redesign-article__media-pair figure {
  margin: 0;
}

.make-article-redesign-page .redesign-article__content-figure img,
.make-article-redesign-page .redesign-article__media-pair img {
  display: block;
  width: 100%;
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.make-article-redesign-page .redesign-article__content-figure img {
  aspect-ratio: 1.72 / 1;
}

.make-article-redesign-page .redesign-article__media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}

.make-article-redesign-page .redesign-article__media-pair img {
  aspect-ratio: 1.1 / 1;
}

.make-article-redesign-page .redesign-article__content-figure figcaption,
.make-article-redesign-page .redesign-article__media-pair figcaption {
  margin-top: var(--space-8);
  color: var(--travel-pine);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.72;
}

.make-article-redesign-page .redesign-article__callout {
  padding: var(--space-24);
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-medium);
  background: var(--travel-white);
}

.make-article-redesign-page .redesign-article__callout strong {
  display: block;
  margin-bottom: var(--space-8);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.make-article-redesign-page .redesign-article__placeholder-content blockquote {
  margin: 0;
  padding: var(--space-8) 0 var(--space-8) var(--space-24);
  border-left: 3px solid var(--travel-green);
  color: var(--travel-pine);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.make-article-redesign-page .redesign-article__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-medium);
}

.make-article-redesign-page .redesign-article__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: var(--travel-surface);
}

.make-article-redesign-page .redesign-article__table-wrap th,
.make-article-redesign-page .redesign-article__table-wrap td {
  padding: var(--space-14) var(--space-16);
  border-bottom: 1px solid var(--travel-pine-8);
  text-align: left;
  vertical-align: top;
}

.make-article-redesign-page .redesign-article__table-wrap th {
  font-weight: 700;
}

.make-article-redesign-page .redesign-article__table-wrap tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .make-article-redesign-page .redesign-article__grid {
    grid-template-columns: 1fr;
  }

  .make-article-redesign-page .redesign-article__sticky {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .make-article-redesign-page .redesign-article__back {
    margin-left: 0;
  }

  .make-article-redesign-page .redesign-article__media-pair {
    grid-template-columns: 1fr;
  }

  .make-article-redesign-page .redesign-article__placeholder-content h2 {
    font-size: 26px;
  }

  .make-article-redesign-page .redesign-article__placeholder-content blockquote {
    font-size: 18px;
  }
}

/* Canonical shared header/footer components */
body.make-page .make-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--travel-pine-8);
  background: var(--travel-white);
  box-shadow: none;
}

body.make-page .make-navbar::before,
body.make-page .make-navbar::after,
body.make-page .make-navbar__inner::before,
body.make-page .make-navbar__inner::after,
body.make-page .make-footer::before,
body.make-page .make-footer::after {
  content: none;
  display: none;
}

body.make-page .make-navbar__inner {
  position: static;
  width: min(100% - 56px, 1360px);
  min-height: 74px;
}

body.make-page .make-brand {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: none;
}

body.make-page .make-brand__mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 1px solid var(--travel-pine-16);
  background: var(--travel-surface);
  box-shadow: none;
}

body.make-page .make-brand--footer .make-brand__mark {
  background: var(--travel-surface);
}

body.make-page .make-brand__text {
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body.make-page .make-brand__logo {
  display: block;
  width: 220px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

body.make-page .make-brand--footer .make-brand__logo {
  width: 220px;
  max-height: 44px;
}

body.make-page .make-nav {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}

body.make-page .make-mobile-drawer__header,
body.make-page .make-mobile-drawer__links,
body.make-page .make-nav-backdrop {
  display: none;
}

body.make-page .make-nav__button,
body.make-page .make-nav__button.active,
body.make-page .make-nav__button:hover,
body.make-page .make-nav__item.is-open .make-nav__button,
body.make-page .make-nav > a {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
}

body.make-page .make-nav__button.active,
body.make-page .make-nav__item.is-open .make-nav__button {
  color: var(--travel-green);
}

body.make-page .make-search-button {
  display: inline-flex;
  background: transparent;
  color: var(--travel-pine);
}

body.make-page .make-nav-toggle {
  display: none;
}

body.make-page .make-navbar__actions {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0;
  gap: var(--space-12);
}

body.make-page.search-open .make-nav {
  display: none;
}

body.make-page.nav-open {
  overflow: hidden;
}

body.make-page.search-open {
  overflow: visible;
}

body.make-page .make-search {
  position: static;
  inset: auto;
  display: none;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 min(360px, calc(100vw - 48px));
  width: min(360px, calc(100vw - 48px));
  max-width: 360px;
  min-width: 0;
  height: 44px;
  gap: 10px;
  padding: 0 10px 0 16px;
  border: 1px solid rgba(31, 31, 31, 0.18);
  border-radius: 999px;
  background: var(--travel-white);
  color: var(--travel-pine);
  box-shadow: none;
}

body.make-page.search-open .make-search {
  display: flex;
}

body.make-page.search-open .make-search-button {
  display: none;
}

body.make-page .make-search:focus-within {
  border-color: rgba(31, 31, 31, 0.22);
  box-shadow: none;
}

body.make-page .make-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

body.make-page .make-search input {
  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
  outline: 0;
}

body.make-page .make-search input::placeholder {
  color: var(--travel-muted);
}

body.make-page .make-search__close {
  position: static;
  inset: auto;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--travel-pine);
  font-size: 20px;
  line-height: 1;
}

body.make-page .make-search__close:hover,
body.make-page .make-search__close:focus-visible {
  background: var(--travel-pine-8);
  outline: 0;
}

body.make-page .make-navbar__cta,
body.make-page .make-navbar__desktop-link {
  display: inline-flex;
  min-height: 36px;
  padding: 0 var(--space-16);
  border-radius: 8px;
  box-shadow: none;
  font-size: 13px;
  font-weight: var(--button-weight);
  text-transform: none;
}

body.make-page .make-navbar__cta {
  background: var(--travel-green);
  color: var(--travel-pine);
}

body.make-page .make-navbar__desktop-link {
  border: 1px solid var(--travel-pine-16);
  background: var(--travel-surface);
  color: var(--travel-pine);
}

body.make-page .make-footer {
  margin-top: 0;
  border-top: 1px solid var(--travel-pine-8);
  background: var(--travel-white);
  color: var(--travel-pine);
}

body.make-page .make-footer,
body.make-page .make-footer a,
body.make-page .make-footer p,
body.make-page .make-footer h4,
body.make-page .make-footer .make-brand__text {
  color: var(--travel-pine);
}

body.make-page .make-footer__brand p,
body.make-page .make-footer__column a,
body.make-page .make-footer__bottom p,
body.make-page .make-footer__bottom-links a {
  color: var(--travel-pine);
}

body.make-page .make-footer__column h4 {
  color: var(--travel-pine);
  opacity: 0.64;
}

body.make-page .make-footer__bottom {
  border-top: 1px solid var(--travel-pine-8);
}

body.make-page .make-footer__column a:hover,
body.make-page .make-footer__bottom-links a:hover {
  color: var(--travel-green);
}

body.make-page .make-navbar__tour-pill,
body.make-page .make-navbar__write,
body.make-page .make-navbar__notify,
body.make-page .make-navbar__avatar,
body.make-page .make-navbar__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
}

body.make-page .make-navbar__tour-pill {
  min-height: var(--button-height-small);
  gap: var(--button-content-gap);
  padding: var(--button-padding-small);
  color: var(--button-primary-text);
  font-size: var(--button-font-small);
  line-height: var(--button-line-small);
}

body.make-page .make-navbar__tour-icon {
  display: none;
}

body.make-page .make-navbar__tour-icon span {
  display: none;
}

body.make-page .make-navbar__notify {
  min-height: var(--button-height-small);
  border: 0;
  background: transparent;
}

body.make-page button.make-navbar__notify {
  padding: 0;
  cursor: pointer;
}

body.make-page .make-navbar__write {
  min-height: var(--button-height-small);
  gap: var(--button-content-gap);
  padding: var(--button-padding-small);
  font-size: var(--button-font-small);
  line-height: var(--button-line-small);
}

body.make-page .make-navbar__write svg,
body.make-page .make-navbar__notify svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.make-page .make-navbar__write svg {
  width: 20px;
  height: 20px;
}

body.make-page .make-navbar__notify {
  width: var(--button-height-small);
  color: var(--travel-pine);
}

body.make-page .make-navbar__notify svg {
  width: 22px;
  height: 22px;
}

body.make-page .make-navbar__avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--travel-green);
  border-radius: 50%;
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
}

body.make-page button.make-navbar__avatar {
  padding: 0;
  cursor: pointer;
}

body.make-page .make-navbar__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

body.make-page .make-navbar__account {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

body.make-page .make-navbar__account-menu {
  right: 0;
  left: auto;
  min-width: 248px;
  padding: 8px;
}

body.make-page .make-navbar__account-menu a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  min-height: 42px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

body.make-page .make-navbar__account-menu a:hover,
body.make-page .make-navbar__account-menu a.active {
  background: rgba(2, 43, 27, 0.08);
  color: var(--travel-pine);
}

body.make-page .make-navbar__account-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-surface);
  color: var(--travel-pine);
}

body.make-page .make-navbar__account-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.make-page .make-navbar__login {
  min-height: var(--button-height-small);
  padding: var(--button-padding-small);
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--travel-pine);
  font-size: var(--button-font-small);
  font-weight: 600;
  line-height: var(--button-line-small);
  cursor: pointer;
}

body.make-page .make-nav__mobile-only {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

body.make-page .redesign-auth-modal[hidden] {
  display: none;
}

body.make-page .redesign-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24);
}

body.make-page .redesign-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 43, 27, 0.28);
}

body.make-page .redesign-auth-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: var(--space-48);
  border-radius: var(--radius-medium);
  background: var(--travel-surface);
  color: var(--travel-pine);
  text-align: left;
  box-shadow: none;
}

body.make-page .redesign-auth-modal__close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--travel-pine);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.make-page .redesign-auth-modal__dialog h2 {
  margin: 0 0 var(--space-16);
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
}

body.make-page .redesign-auth-modal__dialog p {
  margin: 0;
  color: var(--travel-pine);
  font-size: 15px;
  line-height: 1.5;
}

body.make-page .redesign-auth-modal__tabs {
  display: inline-flex;
  gap: var(--space-8);
  margin-top: var(--space-28);
  padding: 4px;
  border: 1px solid var(--travel-border);
  border-radius: var(--radius-button);
  background: var(--travel-white);
}

body.make-page .redesign-auth-modal__tabs button {
  min-height: 38px;
  padding: 0 var(--space-16);
  border: 0;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--travel-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

body.make-page .redesign-auth-modal__tabs button.is-active {
  background: var(--travel-pine);
  color: var(--travel-white);
}

body.make-page .redesign-auth-modal__error {
  margin-top: var(--space-18);
  padding: var(--space-12) var(--space-14);
  border: 1px solid rgba(174, 44, 44, 0.2);
  border-radius: var(--radius-small);
  background: rgba(174, 44, 44, 0.08);
  color: #8b1e1e;
  font-size: 14px;
  font-weight: 600;
}

body.make-page .redesign-auth-modal__panels {
  margin-top: var(--space-24);
}

body.make-page .redesign-auth-modal__form {
  display: grid;
  gap: var(--space-16);
}

body.make-page .redesign-auth-modal__form[hidden] {
  display: none;
}

body.make-page .redesign-auth-modal__form label {
  display: grid;
  gap: var(--space-8);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 600;
}

body.make-page .redesign-auth-modal__form input {
  width: 100%;
  min-height: 48px;
  padding: 0 var(--space-16);
  border: 1px solid var(--travel-border);
  border-radius: var(--radius-small);
  background: var(--travel-white);
  color: var(--travel-pine);
  font: inherit;
  font-weight: 500;
}

body.make-page .redesign-auth-modal__form input:focus {
  border-color: var(--travel-pine);
  outline: 0;
}

body.make-page .redesign-auth-modal__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-button);
  background: var(--travel-pine);
  color: var(--travel-surface);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

body.make-page .redesign-auth-modal__button--secondary {
  background: transparent;
  color: var(--travel-pine);
}

@media (max-width: 900px) {
  body.make-page .make-navbar__inner {
    width: min(100% - 40px, 1360px);
  }

  body.make-page .make-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 118;
    display: block;
    background: rgba(2, 43, 27, 0.18);
    opacity: 1;
    backdrop-filter: blur(2px);
    transition: opacity 240ms var(--motion-ease-emphasis);
  }

  body.make-page .make-nav-backdrop[hidden] {
    display: block;
    opacity: 0;
    pointer-events: none;
  }

  body.make-page .make-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    width: min(292px, calc(100vw - 56px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 22px 24px 28px;
    border: 0;
    border-radius: 0;
    background: var(--travel-white);
    box-shadow: 24px 0 60px rgba(2, 43, 27, 0.12);
    transform: translate3d(-104%, 0, 0);
    transition: transform 320ms var(--motion-ease-emphasis);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.make-page .make-nav.is-open {
    transform: translate3d(0, 0, 0);
  }

  body.make-page .make-nav > .make-nav__item,
  body.make-page .make-nav > .make-nav__mobile-only {
    display: none;
  }

  body.make-page .make-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  body.make-page .make-mobile-drawer__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  body.make-page .make-mobile-drawer__brand img {
    width: 176px;
    max-width: 100%;
    height: auto;
    display: block;
  }

  body.make-page .make-mobile-drawer__close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--travel-pine);
    cursor: pointer;
  }

  body.make-page .make-mobile-drawer__close span {
    width: 18px;
    height: 1.6px;
    display: block;
    border-radius: 999px;
    background: currentColor;
  }

  body.make-page .make-mobile-drawer__links {
    display: grid;
    gap: 4px;
    padding-top: 4px;
  }

  body.make-page .make-mobile-drawer__links a,
  body.make-page .make-mobile-drawer__links button {
    min-height: 52px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #242424;
    font: 500 17px/1.2 var(--font-sans);
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  body.make-page .make-mobile-drawer__links a.active,
  body.make-page .make-mobile-drawer__links button.active {
    color: var(--travel-pine);
    font-weight: 700;
  }

  body.make-page .make-mobile-drawer__links span[aria-hidden='true'] {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
  }

  body.make-page .make-mobile-drawer__links svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  body.make-page .make-nav-toggle {
    display: inline-flex;
  }

  body.make-page .make-navbar__desktop-link,
  body.make-page .make-navbar__cta {
    display: none;
  }

  body.make-page .make-navbar__tour-pill {
    min-height: 44px;
    padding: 0 var(--space-16);
    font-size: 0;
  }

  body.make-page .make-navbar__tour-icon {
    width: 22px;
    height: 22px;
  }

  body.make-page .make-navbar__write span {
    display: none;
  }

  body.make-page .make-navbar__write svg,
  body.make-page .make-navbar__notify svg {
    width: 28px;
    height: 28px;
  }

  body.make-page .make-navbar__avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  body.make-page .make-navbar,
  .make-home-redesign-page .make-navbar {
    background: var(--travel-white);
  }

  body.make-page .make-navbar__inner {
    width: min(100% - 32px, 1360px);
    min-height: 58px;
    gap: 14px;
    justify-content: flex-start;
  }

  body.make-page .make-nav-toggle {
    order: 1;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 999px;
  }

  body.make-page .make-nav-toggle span {
    width: 18px;
  }

  body.make-page .make-brand {
    order: 2;
    flex: 0 1 auto;
    position: static;
    transform: none;
  }

  body.make-page .make-brand__logo {
    width: clamp(116px, 34vw, 138px);
    max-height: 28px;
  }

  body.make-page .make-navbar__actions {
    order: 3;
    margin-left: auto;
    gap: 12px;
  }

  body.make-page .make-search-button {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    padding: 0;
  }

  body.make-page .make-search-button svg {
    width: 22px;
    height: 22px;
  }

  body.make-page .make-navbar__tour-pill,
  body.make-page .make-navbar__write,
  body.make-page .make-navbar__notify,
  body.make-page .make-navbar__login {
    display: none;
  }

  body.make-page .make-navbar__avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 18px;
  }

  body.make-page .make-nav {
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.make-page .make-nav,
  body.make-page .make-nav-backdrop {
    transition: none;
  }
}

body.make-write-page {
  background: var(--travel-surface);
}

.make-write-page [hidden] {
  display: none !important;
}

.make-collab-page {
  background: #fbfaf8;
}

.make-collab-page .make-navbar {
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(18px);
}

.collab-page {
  color: var(--travel-pine);
}

.collab-kicker {
  margin: 0 0 14px;
  color: rgba(2, 43, 27, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collab-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 84px 0 72px;
}

.collab-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.collab-hero__copy {
  max-width: 580px;
}

.collab-hero h1 {
  margin: 0;
  max-width: 620px;
  color: var(--travel-pine);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.collab-hero h1 span {
  display: inline-block;
  color: var(--travel-green);
  font-variant-numeric: tabular-nums;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.collab-hero h1 span.is-counting {
  transform: translateY(-2px);
  filter: saturate(1.2);
}

.collab-hero__copy > p:not(.collab-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(2, 43, 27, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

.collab-calculator {
  width: min(100%, 480px);
  margin-top: 36px;
}

.collab-calculator__top,
.collab-calculator__scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.collab-calculator__top strong {
  font-size: 15px;
  font-weight: 800;
}

.collab-calculator__top span,
.collab-calculator__scale {
  color: rgba(2, 43, 27, 0.58);
  font-size: 13px;
  font-weight: 600;
}

.collab-range {
  --collab-progress: 14.2857%;
  --collab-tooltip-left: 14.2857%;
  position: relative;
  display: block;
  padding: 42px 0 10px;
}

.collab-range__bubble {
  position: absolute;
  left: var(--collab-tooltip-left);
  top: 0;
  transform: translate(-50%, 8px) scale(0.96);
  min-width: 142px;
  padding: 8px 12px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 999px;
  background: var(--travel-white);
  box-shadow: 0 18px 44px rgba(2, 43, 27, 0.12);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.collab-range.is-active .collab-range__bubble,
.collab-range:focus-within .collab-range__bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.collab-range input {
  width: 100%;
  height: 34px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.collab-range input::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--travel-green) 0 var(--collab-progress), rgba(2, 43, 27, 0.14) var(--collab-progress) 100%);
}

.collab-range input::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.14);
}

.collab-range input::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--travel-green);
}

.collab-range input::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -10px;
  appearance: none;
  border: 6px solid var(--travel-white);
  border-radius: 50%;
  background: var(--travel-green);
  box-shadow: 0 10px 26px rgba(0, 211, 127, 0.28);
}

.collab-range input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 5px solid var(--travel-white);
  border-radius: 50%;
  background: var(--travel-green);
  box-shadow: 0 10px 26px rgba(0, 211, 127, 0.28);
}

.collab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.collab-hero__visual {
  position: relative;
  min-height: 500px;
}

.collab-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--travel-white);
  box-shadow: 0 28px 80px rgba(2, 43, 27, 0.12);
}

.collab-map-card img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}

.collab-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 250, 248, 0) 36%, rgba(251, 250, 248, 0.82) 100%),
    radial-gradient(circle at 62% 38%, rgba(0, 211, 127, 0.16), transparent 32%);
}

.collab-map-card__pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--travel-white);
  box-shadow: 0 14px 34px rgba(2, 43, 27, 0.16);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 800;
}

.collab-map-card__pin--one {
  left: 10%;
  top: 18%;
}

.collab-map-card__pin--two {
  right: 12%;
  top: 28%;
  background: var(--travel-green);
}

.collab-map-card__pin--three {
  left: 42%;
  bottom: 18%;
}

.collab-stats-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(260px, 58%);
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(2, 43, 27, 0.16);
  backdrop-filter: blur(18px);
}

.collab-stats-card span,
.collab-stats-card small {
  display: block;
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.collab-stats-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--travel-pine);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.collab-section {
  padding: 92px 0;
}

.collab-section--center {
  text-align: center;
}

.collab-section h2 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.collab-section__lead {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(2, 43, 27, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.collab-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.collab-benefits article,
.collab-author-card,
.collab-showcase article {
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 24px;
  background: var(--travel-white);
  box-shadow: 0 20px 50px rgba(2, 43, 27, 0.06);
}

.collab-benefits article {
  padding: 28px;
  text-align: left;
}

.collab-benefits article > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 211, 127, 0.14);
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 800;
}

.collab-benefits h3,
.collab-author-card h3,
.collab-showcase h3 {
  margin: 20px 0 0;
  color: var(--travel-pine);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.collab-benefits p,
.collab-author-card p,
.collab-showcase p,
.collab-terms p,
.collab-split p,
.collab-faq p {
  color: rgba(2, 43, 27, 0.66);
  line-height: 1.5;
}

.collab-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.collab-section__head p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(2, 43, 27, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

.collab-text-link {
  color: var(--travel-pine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collab-author-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.collab-author-card {
  padding: 24px;
}

.collab-author-card__avatar {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 34px;
  font-weight: 800;
}

.collab-author-card p {
  margin: 8px 0 20px;
}

.collab-author-card div {
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 43, 27, 0.08);
}

.collab-author-card strong {
  font-size: 24px;
  font-weight: 800;
}

.collab-author-card div span {
  color: rgba(2, 43, 27, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.collab-terms {
  background: var(--travel-pine);
  color: var(--travel-white);
}

.collab-terms__grid,
.collab-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.collab-terms .collab-kicker,
.collab-terms h2,
.collab-terms p {
  color: var(--travel-white);
}

.collab-terms p {
  max-width: 560px;
  opacity: 0.72;
}

.collab-checklist {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.collab-checklist div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.collab-checklist span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-green);
  color: var(--travel-pine);
  font-weight: 900;
}

.collab-checklist p {
  margin: 0;
  opacity: 1;
}

.collab-showcase {
  text-align: center;
}

.collab-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
  text-align: left;
}

.collab-showcase article {
  overflow: hidden;
}

.collab-showcase img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

.collab-showcase article div {
  padding: 26px;
}

.collab-showcase article span {
  color: var(--travel-green);
  font-size: 13px;
  font-weight: 800;
}

.collab-split {
  padding-top: 40px;
}

.collab-split img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(2, 43, 27, 0.1);
}

.collab-split p {
  max-width: 520px;
  font-size: 17px;
}

.collab-faq {
  background: #f4f3f0;
  text-align: center;
}

.collab-faq__list {
  max-width: 860px;
  display: grid;
  gap: 10px;
  margin: 44px auto 0;
  text-align: left;
}

.collab-faq details {
  border-bottom: 1px solid rgba(2, 43, 27, 0.12);
  background: transparent;
}

.collab-faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--travel-pine);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.collab-faq summary::-webkit-details-marker {
  display: none;
}

.collab-faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.collab-faq details[open] summary::after {
  content: "−";
}

.collab-faq details p {
  max-width: 680px;
  margin: 0 0 22px;
}

.collab-final {
  max-width: 720px;
  margin: 70px auto 0;
}

.collab-final p {
  margin: 18px auto 28px;
}

@media (max-width: 980px) {
  .collab-hero {
    min-height: auto;
    padding: 54px 0 64px;
  }

  .collab-hero__grid,
  .collab-terms__grid,
  .collab-split__grid {
    grid-template-columns: 1fr;
  }

  .collab-hero__visual {
    min-height: auto;
  }

  .collab-map-card img {
    height: 390px;
  }

  .collab-benefits,
  .collab-author-rail,
  .collab-showcase__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .collab-hero {
    padding: 38px 0 46px;
  }

  .collab-hero__grid {
    gap: 38px;
  }

  .collab-hero h1 {
    font-size: 38px;
    line-height: 1.04;
    min-height: 5.2em;
  }

  .collab-hero__copy > p:not(.collab-kicker) {
    font-size: 16px;
    min-height: 7.75em;
  }

  .collab-hero__actions,
  .collab-calculator__top {
    align-items: stretch;
    flex-direction: column;
  }

  .collab-hero__actions .make-button {
    width: 100%;
  }

  .collab-map-card {
    border-radius: 22px;
  }

  .collab-map-card img {
    height: 310px;
  }

  .collab-stats-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -60px auto 0;
  }

  .collab-map-card__pin {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .collab-section {
    padding: 62px 0;
  }

  .collab-section h2 {
    font-size: 34px;
  }

  .collab-section__head {
    align-items: start;
    flex-direction: column;
  }

  .collab-benefits,
  .collab-author-rail,
  .collab-showcase__grid {
    grid-template-columns: 1fr;
  }

  .collab-author-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .collab-author-card {
    min-width: 240px;
    scroll-snap-align: start;
  }

  .collab-terms__grid,
  .collab-split__grid {
    gap: 32px;
  }

  .collab-showcase img,
  .collab-split img {
    height: 240px;
  }
}

.make-write-page .write-studio {
  min-height: 100vh;
  background: var(--travel-surface);
  color: var(--travel-pine);
}

.make-write-page .write-studio__topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  background: var(--travel-surface);
}

.make-write-page .write-studio__brand,
.make-write-page .write-studio__actions {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.make-write-page .write-studio__back,
.make-write-page .write-studio__logo,
.make-write-page .write-studio__brand span {
  color: var(--travel-pine);
  text-decoration: none;
}

.make-write-page .write-studio__back {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 22px;
}

.make-write-page .write-studio__logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.make-write-page .write-studio__brand span {
  font-size: 14px;
  color: rgba(2, 43, 27, 0.52);
}

.make-write-page .write-studio__brand span:first-of-type {
  color: var(--travel-pine);
  font-weight: 600;
}

.make-write-page .write-studio__brand span:nth-of-type(2) {
  color: rgba(2, 43, 27, 0.46);
}

.make-write-page .write-studio__publish,
.make-write-page .write-publish-panel__submit {
  min-height: 34px;
  padding: 6px 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--travel-green);
  color: var(--travel-pine);
  font: 600 14px/20px var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-studio__icon {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--travel-pine);
  font: 700 18px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-studio__avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--travel-pine);
  color: var(--travel-green);
  text-decoration: none;
  font-weight: 700;
}

.make-write-page .write-studio__error {
  width: min(700px, calc(100% - 48px));
  margin: var(--space-24) auto 0;
  padding: var(--space-16);
  border: 1px solid var(--travel-pine-16);
  border-radius: var(--radius-medium);
  background: var(--travel-white);
  color: var(--travel-pine);
}

.make-write-page .write-editor {
  position: relative;
  width: min(700px, calc(100% - 48px));
  margin: 86px auto 0;
}

.make-write-page .write-editor__title-wrap {
  display: block;
}

.make-write-page .write-editor__title {
  width: 100%;
  min-height: 70px;
  padding: 0;
  border: 0;
  border-radius: 0;
  resize: none;
  overflow: hidden;
  background: transparent;
  color: var(--travel-pine);
  box-shadow: none;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.18;
}

.make-write-page .write-editor__title::placeholder {
  color: rgba(2, 43, 27, 0.28);
}

.make-write-page .write-editor__body-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  margin-top: var(--space-12);
}

.make-write-page .write-editor__add {
  width: 48px;
  height: 48px;
  margin-top: 0;
  border: 1.5px solid rgba(2, 43, 27, 0.42);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  color: rgba(2, 43, 27, 0.56);
  font: 300 34px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-editor__add[hidden] {
  display: none;
}

.make-write-page .write-editor__surface {
  min-height: 560px;
  padding: 0 0 var(--space-80);
  outline: 0;
  color: rgba(2, 43, 27, 0.78);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.55;
}

.make-write-page .write-editor__surface:empty::before {
  content: attr(data-placeholder);
  color: rgba(2, 43, 27, 0.28);
}

.make-write-page .write-editor__surface h2,
.make-write-page .write-editor__surface h3 {
  margin: 1.2em 0 0.35em;
  color: var(--travel-pine);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.16;
}

.make-write-page .write-editor__surface h2 {
  font-size: 34px;
}

.make-write-page .write-editor__surface h3 {
  font-size: 28px;
}

.make-write-page .write-editor__surface p,
.make-write-page .write-editor__surface blockquote,
.make-write-page .write-editor__surface ul,
.make-write-page .write-editor__surface ol {
  margin: 0 0 1em;
}

.make-write-page .write-editor__surface blockquote {
  padding-left: var(--space-24);
  border-left: 3px solid var(--travel-green);
  color: var(--travel-pine);
}

.make-write-page .write-editor__surface pre {
  padding: var(--space-16);
  border-radius: var(--radius-medium);
  background: var(--travel-white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.make-write-page .write-editor__surface hr {
  width: 72px;
  margin: var(--space-48) auto;
  border: 0;
  border-top: 4px dotted rgba(2, 43, 27, 0.56);
}

.make-write-page .write-toolbar {
  position: absolute;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid var(--travel-pine-8);
  border-radius: 8px;
  background: var(--travel-surface);
  box-shadow: var(--travel-shadow-soft);
}

.make-write-page .write-toolbar[hidden] {
  display: none;
}

.make-write-page .write-toolbar button {
  min-width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--travel-pine);
  font: 700 18px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-toolbar button:hover {
  background: var(--travel-pine-8);
}

.make-write-page .write-insert-menu {
  position: absolute;
  left: 48px;
  top: 112px;
  z-index: 60;
  display: flex;
  gap: var(--space-8);
  padding: var(--space-8);
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  box-shadow: var(--travel-shadow-soft);
}

.make-write-page .write-insert-menu[hidden] {
  display: none;
}

.make-write-page .write-insert-menu button,
.make-write-page .write-insert-menu__item {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--travel-green);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  color: var(--travel-pine);
  font: 600 13px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-insert-menu__item input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.make-write-page .write-preview-step {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: auto;
  background: var(--travel-surface);
}

.make-write-page .write-preview-step[hidden] {
  display: none;
}

.make-write-page .write-preview-step__close {
  position: fixed;
  top: 108px;
  right: 15vw;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(2, 43, 27, 0.62);
  font: 300 34px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-preview-step__layout {
  width: min(760px, calc(100% - 48px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-64);
  align-items: center;
  margin: 0 auto;
  padding: 120px 0;
}

.make-write-page .write-preview-card h2 {
  margin: 0 0 var(--space-24);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
}

.make-write-page .write-preview-card__image {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-24);
  padding: var(--space-32);
  border-radius: 0;
  background: var(--travel-white);
  color: rgba(2, 43, 27, 0.52);
  text-align: center;
  cursor: pointer;
}

.make-write-page .write-preview-card__image span {
  max-width: 430px;
}

.make-write-page .write-preview-card__image input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.make-write-page .write-preview-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-write-page .write-preview-card__image img[hidden] {
  display: none;
}

.make-write-page .write-preview-field {
  display: block;
  margin-bottom: var(--space-24);
}

.make-write-page .write-preview-field strong {
  display: block;
  margin-bottom: var(--space-8);
}

.make-write-page .write-preview-field input,
.make-write-page .write-preview-field textarea,
.make-write-page .write-preview-field select,
.make-write-page .write-topics input {
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--travel-pine);
  font: 500 16px/1.4 var(--font-sans);
}

.make-write-page .write-preview-field input {
  font-weight: 700;
}

.make-write-page .write-preview-field textarea[data-preview-title] {
  min-height: 58px;
  resize: none;
  overflow: hidden;
  font-weight: 700;
}

.make-write-page .write-preview-field textarea[data-preview-description] {
  min-height: 38px;
  padding: 0 0 var(--space-12);
  resize: none;
  overflow: hidden;
}

.make-write-page .write-preview-field small,
.make-write-page .write-preview-card__note,
.make-write-page .write-topics p,
.make-write-page .write-publish-panel__section p {
  color: rgba(2, 43, 27, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.make-write-page .write-preview-card__note {
  margin-top: var(--space-32);
}

.make-write-page .write-publish-panel {
  align-self: center;
}

.make-write-page .write-topics {
  position: relative;
}

.make-write-page .write-topics,
.make-write-page .write-publish-panel__section {
  padding-bottom: var(--space-32);
  margin-bottom: var(--space-32);
  border-bottom: 1px solid var(--travel-pine-8);
}

.make-write-page .write-publish-panel__section {
  display: grid;
  gap: var(--space-12);
  padding-top: var(--space-8);
  margin-bottom: var(--space-24);
}

.make-write-page .write-topics strong,
.make-write-page .write-publish-panel__section strong {
  display: block;
  margin-bottom: var(--space-8);
  font-size: 18px;
}

.make-write-page .write-topics__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.make-write-page .write-topics__chips button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--travel-pine);
  color: var(--travel-surface);
  cursor: pointer;
}

.make-write-page .write-topics__suggestions {
  position: absolute;
  z-index: 16;
  top: calc(100% - var(--space-24));
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: var(--space-8);
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: var(--radius-small);
  background: var(--travel-surface);
  box-shadow: var(--travel-shadow-soft);
}

.make-write-page .write-topics__suggestions[hidden] {
  display: none;
}

.make-write-page .write-topics__suggestions button {
  min-height: 34px;
  padding: 0 var(--space-12);
  border: 0;
  border-radius: var(--radius-xsmall);
  background: transparent;
  color: var(--travel-pine);
  font: 600 14px/1.2 var(--font-sans);
  text-align: left;
  cursor: pointer;
}

.make-write-page .write-topics__suggestions button:hover,
.make-write-page .write-topics__suggestions button:focus-visible {
  background: var(--travel-pine-8);
  outline: 0;
}

.make-write-page .write-notify-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: var(--space-12);
  align-items: start;
  margin-top: var(--space-4);
  padding: var(--space-8) 0;
  color: var(--travel-pine);
  cursor: pointer;
}

.make-write-page .write-notify-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.make-write-page .write-notify-option strong {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
}

.make-write-page .write-notify-option small {
  display: block;
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.make-write-page .write-publish-panel__actions {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.make-write-page .write-publish-panel__submit {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border-color: transparent;
}

.make-write-page .write-publish-panel__schedule {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  text-decoration: underline;
  font: 600 14px/1 var(--font-sans);
  cursor: pointer;
}

body.write-preview-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .make-write-page .write-studio__topbar {
    width: calc(100% - 32px);
  }

  .make-write-page .write-studio__logo {
    font-size: 24px;
  }

  .make-write-page .write-studio__brand span,
  .make-write-page .write-studio__icon {
    display: none;
  }

  .make-write-page .write-editor {
    width: calc(100% - 36px);
    margin-top: var(--space-48);
  }

  .make-write-page .write-editor__title {
    font-size: 34px;
  }

  .make-write-page .write-editor__body-row {
    grid-template-columns: 1fr;
  }

  .make-write-page .write-editor__add {
    margin-bottom: var(--space-16);
  }

  .make-write-page .write-editor__surface {
    min-height: 520px;
    font-size: 21px;
  }

  .make-write-page .write-toolbar {
    max-width: calc(100vw - 24px);
    overflow-x: auto;
  }

  .make-write-page .write-preview-step__layout {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: var(--space-40);
    align-items: start;
    padding: 88px 0 var(--space-64);
  }

  .make-write-page .write-preview-step__close {
    top: 24px;
    right: 18px;
  }
}

.make-authors-page main {
  background: var(--travel-white);
}

.make-authors-page .authors-section {
  padding-top: var(--space-40);
}

.make-authors-page .authors-section__head {
  width: min(100%, 720px);
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0 auto 36px;
  text-align: center;
}

.make-authors-page .authors-section__head h1 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.make-authors-page .authors-search {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: var(--space-8);
  padding: 6px;
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  box-shadow: 0 12px 30px rgba(2, 43, 27, 0.07);
}

.make-authors-page .authors-search:focus-within {
  border-color: var(--travel-pine);
  box-shadow: 0 14px 34px rgba(2, 43, 27, 0.1);
}

.make-authors-page .authors-search input {
  min-width: 0;
  min-height: 0;
  height: 44px;
  padding: 0 14px 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--travel-pine);
  font: 600 16px/1 var(--font-sans);
  outline: 0;
}

.make-authors-page .authors-search input::placeholder {
  color: rgba(2, 43, 27, 0.54);
}

.make-authors-page .authors-search button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--travel-green);
  color: var(--travel-pine);
  cursor: pointer;
}

.make-authors-page .authors-search button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.make-authors-page .authors-empty {
  width: min(100%, 680px);
  margin: 0 auto var(--space-32);
  text-align: center;
}

.make-authors-page .authors-empty h2 {
  margin: 0 0 var(--space-10);
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.make-authors-page .authors-empty p {
  margin: 0;
  color: rgba(2, 43, 27, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.make-authors-page .authors-grid {
  width: min(100%, 1160px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 365px));
  justify-content: center;
  gap: var(--space-32);
  margin: 0 auto;
}

.make-authors-page .authors-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 34px 36px 30px;
  border: 1px solid var(--travel-pine-8);
  border-radius: 28px;
  background: var(--travel-surface);
  box-shadow: 0 18px 54px rgba(2, 43, 27, 0.08);
  color: var(--travel-pine);
  text-align: center;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.make-authors-page .authors-card:hover,
.make-authors-page .authors-card:focus-visible {
  border-color: var(--travel-pine);
  box-shadow: 0 22px 64px rgba(2, 43, 27, 0.12);
  transform: translateY(-2px);
}

.make-authors-page .authors-card:focus-visible {
  outline: 2px solid var(--travel-green);
  outline-offset: 4px;
}

.make-authors-page .authors-card__avatar {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20, 20px);
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.make-authors-page .authors-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-authors-page .authors-card h2 {
  width: 100%;
  margin: 0 0 var(--space-12);
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.make-authors-page .authors-card p {
  min-height: 94px;
  margin: 0;
  color: rgba(2, 43, 27, 0.62);
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.make-authors-page .authors-card__stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
  margin-top: auto;
  padding-top: var(--space-24);
  border-top: 1px solid var(--travel-pine-8);
}

.make-authors-page .authors-card__stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.make-authors-page .authors-card__stats strong {
  display: block;
  color: var(--travel-pine);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.make-authors-page .authors-card__stats span {
  display: block;
  max-width: 120px;
  margin-top: var(--space-8);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 1080px) {
  .make-authors-page .authors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .make-authors-page .authors-section__head {
    gap: var(--space-16);
    margin-bottom: var(--space-32);
  }

  .make-authors-page .authors-section__head h1 {
    font-size: 36px;
  }

  .make-authors-page .authors-search {
    grid-template-columns: minmax(0, 1fr) 46px;
    padding: 6px;
  }

  .make-authors-page .authors-search input {
    height: 42px;
    padding-left: 14px;
    font-size: 16px;
  }

  .make-authors-page .authors-search button {
    width: 46px;
    height: 46px;
  }

  .make-authors-page .authors-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .make-authors-page .authors-card {
    min-height: 330px;
    padding: 30px 24px 26px;
    border-radius: 24px;
  }
}

.make-author-profile-page main {
  background: var(--travel-white);
}

.make-author-profile-page .author-profile-section {
  padding: var(--space-56) 0 var(--space-80);
}

.make-author-profile-page .author-profile-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.make-author-profile-page .author-profile-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
  padding-bottom: var(--space-56);
  border-bottom: 1px solid var(--travel-pine-8);
}

.make-author-profile-page .author-profile-card {
  padding: var(--space-28, 28px) var(--space-28, 28px) var(--space-24);
  border: 1px solid var(--travel-pine-8);
  border-radius: 18px;
  background: var(--travel-surface);
  box-shadow: 0 22px 64px rgba(2, 43, 27, 0.08);
  color: var(--travel-pine);
}

.make-author-profile-page .author-profile-card__identity {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: var(--space-20, 20px);
  align-items: center;
}

.make-author-profile-page .author-profile-card__avatar {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.make-author-profile-page .author-profile-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-author-profile-page .author-profile-card h2 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.make-author-profile-page .author-profile-card__identity p {
  margin: var(--space-6) 0 0;
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 700;
}

.make-author-profile-page .author-profile-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--space-28, 28px);
  padding-top: var(--space-22, 22px);
  border-top: 1px solid var(--travel-pine-8);
}

.make-author-profile-page .author-profile-card__stats div {
  display: grid;
  gap: 3px;
}

.make-author-profile-page .author-profile-card__stats div + div {
  padding-left: var(--space-22, 22px);
  border-left: 1px solid var(--travel-pine-8);
}

.make-author-profile-page .author-profile-card__stats strong {
  color: var(--travel-pine);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.make-author-profile-page .author-profile-card__stats span {
  color: var(--travel-pine);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.make-author-profile-page .author-profile-card__follow {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-20, 20px);
  padding: 0 var(--space-18, 18px);
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  font: 700 14px/1 var(--font-sans);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.make-author-profile-page .author-profile-card__follow:hover {
  background: var(--button-primary-hover-bg);
}

.make-author-profile-page .author-profile-card__follow.is-active {
  background: var(--travel-pine);
  color: var(--travel-surface);
}

.make-author-profile-page .author-profile-about {
  min-width: 0;
}

.make-author-profile-page .author-profile-about h1 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.make-author-profile-page .author-profile-about__facts {
  display: grid;
  gap: var(--space-14);
  margin-top: var(--space-28);
}

.make-author-profile-page .author-profile-about__facts div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--space-14);
  align-items: center;
}

.make-author-profile-page .author-profile-about__facts span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(2, 43, 27, 0.72);
}

.make-author-profile-page .author-profile-about__facts svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-author-profile-page .author-profile-about__facts p {
  margin: 0;
  color: rgba(2, 43, 27, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.make-author-profile-page .author-profile-about__text {
  display: grid;
  gap: var(--space-18);
  max-width: 720px;
  margin-top: var(--space-32);
}

.make-author-profile-page .author-profile-about__text p {
  margin: 0;
  color: rgba(2, 43, 27, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.make-author-profile-page .author-profile-feed {
  min-width: 0;
  padding-top: var(--space-40);
}

.make-author-profile-page .author-profile-feed__head {
  display: flex;
  gap: var(--space-18);
  align-items: end;
  justify-content: space-between;
  margin-bottom: var(--space-8, 8px);
  padding-bottom: var(--space-18, 18px);
  border-bottom: 1px solid var(--travel-pine-8);
}

.make-author-profile-page .author-profile-feed__head p {
  margin: 0;
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.make-author-profile-page .author-profile-feed__head h2 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.make-author-profile-page .author-profile-list {
  display: grid;
}

.make-author-profile-page .author-profile-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--travel-pine-8);
}

.make-author-profile-page .author-profile-article:first-child {
  padding-top: 22px;
}

.make-author-profile-page .author-profile-article__content {
  min-width: 0;
}

.make-author-profile-page .author-profile-article__source {
  margin: 0 0 var(--space-8, 8px);
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.make-author-profile-page .author-profile-article h3 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.make-author-profile-page .author-profile-article h3 a {
  color: inherit;
  text-decoration: none;
}

.make-author-profile-page .author-profile-article h3 a:hover,
.make-author-profile-page .author-profile-article h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.make-author-profile-page .author-profile-article__excerpt {
  max-width: 620px;
  margin: var(--space-8, 8px) 0 0;
  color: rgba(2, 43, 27, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.48;
}

.make-author-profile-page .author-profile-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  color: rgba(2, 43, 27, 0.64);
  font-size: 13px;
  font-weight: 700;
}

.make-author-profile-page .author-profile-article__metric,
.make-author-profile-page .author-profile-article__category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
}

.make-author-profile-page .author-profile-article__metric svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-author-profile-page .author-profile-article__category {
  color: rgba(2, 43, 27, 0.68);
}

.make-author-profile-page .author-profile-article__image {
  display: block;
  overflow: hidden;
  align-self: start;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: var(--travel-surface);
}

.make-author-profile-page .author-profile-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.make-articles-page main {
  background: var(--travel-white);
}

.make-articles-page .articles-explore-hero {
  padding: var(--space-28, 28px) 0 var(--space-48);
  border-bottom: 1px solid var(--travel-pine-8);
}

.make-articles-page .articles-topic-rail {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto var(--space-40);
  padding: 0 0 var(--space-8);
  overflow-x: auto;
  scrollbar-width: none;
}

.make-articles-page .articles-topic-rail::-webkit-scrollbar {
  display: none;
}

.make-articles-page .articles-topic-chip {
  min-height: 38px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: var(--radius-pill);
  background: #f2f2f2;
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.make-articles-page .articles-topic-chip:hover,
.make-articles-page .articles-topic-chip:focus-visible,
.make-articles-page .articles-topic-chip.active {
  border-color: rgba(2, 43, 27, 0.22);
  background: #ffffff;
}

.make-articles-page .articles-topic-chip--primary {
  border-color: rgba(2, 43, 27, 0.74);
  background: #ffffff;
  font-weight: 700;
}

.make-articles-page .articles-topic-chip--primary.active {
  border-color: rgba(2, 43, 27, 0.74);
}

.make-articles-page .articles-topic-chip svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--travel-pine);
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-articles-page .articles-topic-rail__more {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: #f2f2f2;
  color: rgba(2, 43, 27, 0.58);
}

.make-articles-page .articles-topic-rail__more svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.make-articles-page .articles-explore-hero__content {
  width: min(100%, 680px);
  box-sizing: border-box;
  display: grid;
  gap: var(--space-24);
  justify-items: center;
  margin: var(--space-8) auto 0;
  padding: var(--space-24);
  text-align: center;
}

.make-articles-page .articles-explore-hero__content h1 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.make-articles-page .articles-explore-search {
  width: min(100%, 620px);
  min-height: 54px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
  padding: 0 var(--space-24);
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  box-shadow: 0 12px 32px rgba(2, 43, 27, 0.07);
}

.make-articles-page .articles-explore-search:focus-within {
  border-color: var(--travel-pine);
  box-shadow: 0 14px 36px rgba(2, 43, 27, 0.1);
}

.make-articles-page .articles-explore-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(2, 43, 27, 0.58);
  stroke-width: 2;
  stroke-linecap: round;
}

.make-articles-page .articles-explore-search input {
  min-width: 0;
  min-height: 0;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: 600 16px/1.2 var(--font-sans);
  outline: 0;
}

.make-articles-page .articles-explore-search input::placeholder {
  color: rgba(2, 43, 27, 0.48);
}

.make-articles-page .articles-recommended {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  justify-content: center;
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 500;
}

.make-articles-page .articles-recommended a {
  color: var(--travel-pine);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(2, 43, 27, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.make-articles-page .articles-recommended a:hover,
.make-articles-page .articles-recommended a:focus-visible {
  text-decoration-color: currentColor;
}

.make-articles-page .make-card__image .make-badge {
  border: 1px solid rgba(2, 43, 27, 0.08);
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--travel-pine) !important;
  box-shadow: 0 8px 18px rgba(2, 43, 27, 0.08);
  backdrop-filter: blur(8px);
}

.make-card__image-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 24px);
}

.make-card__image-tags .make-badge {
  position: static;
  min-height: 34px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.make-card__image-tags .make-badge--tag {
  border-color: rgba(2, 43, 27, 0.08);
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--travel-pine) !important;
}

.make-search-page main {
  background: var(--travel-white);
}

.search-results-page {
  padding: var(--space-64) 0 var(--space-80);
}

.search-results-page__shell {
  width: min(1240px, calc(100% - 48px));
}

.search-results-page__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: var(--space-24);
  align-items: end;
}

.search-results-page__header h1 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.search-results-page__header h1 span {
  color: rgba(2, 43, 27, 0.5);
  font-weight: 600;
}

.search-results-page__header h1 strong {
  color: var(--travel-pine);
  font-weight: 600;
}

.search-results-page__form {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0 6px 0 18px;
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
}

.search-results-page__form input {
  min-height: 0;
  height: 38px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font: 500 15px/1.2 var(--font-sans);
}

.search-results-page__form button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--accent-primary);
  font: 700 14px/1 var(--font-sans);
  cursor: pointer;
}

.search-results-tabs {
  display: flex;
  gap: var(--space-28, 28px);
  margin-top: var(--space-32);
  border-bottom: 1px solid var(--travel-pine-8);
}

.search-results-tabs a,
.search-results-tabs span {
  position: relative;
  padding: 0 0 16px;
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.search-results-tabs .is-active {
  color: var(--travel-pine);
}

.search-results-tabs .is-active::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--travel-pine);
}

.search-results-count {
  margin: var(--space-20) 0 0;
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 600;
}

.search-results-list {
  display: grid;
  gap: 0;
}

.search-result-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: var(--space-32);
  padding: var(--space-32) 0;
  border-bottom: 1px solid var(--travel-pine-8);
}

.search-result-item__main {
  min-width: 0;
}

.search-result-item__source {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: var(--space-14, 14px);
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  font-weight: 500;
}

.search-result-item__avatar {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-pine);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.search-result-item h2 {
  max-width: 520px;
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.search-result-item h2 a {
  color: var(--travel-pine);
  text-decoration: none;
}

.search-result-item h2 a:hover,
.search-result-item h2 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.search-result-item p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(2, 43, 27, 0.64);
  font-size: 16px;
  line-height: 1.45;
}

.search-result-item__image {
  display: block;
  width: 160px;
  height: 106px;
  align-self: center;
  overflow: hidden;
  border-radius: 4px;
  background: var(--travel-pine-4);
}

.search-result-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-item__actions {
  display: flex;
  gap: var(--space-22, 22px);
  align-items: center;
  margin-top: var(--space-22, 22px);
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.search-result-item__actions span,
.search-result-item__actions a,
.search-result-item__actions button {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.search-result-item__actions button {
  cursor: pointer;
}

.search-result-item__actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-results-empty {
  margin-top: var(--space-32);
}

@media (max-width: 760px) {
  .make-articles-page .articles-explore-hero {
    padding: var(--space-20, 20px) 0 var(--space-40);
  }

  .make-articles-page .articles-topic-rail {
    margin-bottom: var(--space-32);
  }

  .make-articles-page .articles-topic-chip {
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .make-articles-page .articles-explore-hero__content {
    gap: var(--space-24);
  }

  .make-articles-page .articles-explore-hero__content h1 {
    font-size: 34px;
  }

  .make-articles-page .articles-explore-search {
    min-height: 50px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: var(--space-12);
    padding: 0 var(--space-16);
  }

  .make-articles-page .articles-explore-search svg {
    width: 20px;
    height: 20px;
  }

  .make-articles-page .articles-explore-search input {
    height: 38px;
    font-size: 15px;
  }

  .make-articles-page .articles-recommended {
    font-size: 14px;
  }

  .search-results-page {
    padding: var(--space-48) 0 var(--space-64);
  }

  .search-results-page__shell {
    width: min(100% - 32px, 1240px);
  }

  .search-results-page__header {
    grid-template-columns: 1fr;
    gap: var(--space-18, 18px);
  }

  .search-results-page__header h1 {
    font-size: 34px;
  }

  .search-results-tabs {
    gap: var(--space-20);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .search-results-tabs::-webkit-scrollbar {
    display: none;
  }

  .search-result-item {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: var(--space-16);
    padding: var(--space-24) 0;
  }

  .search-result-item h2 {
    font-size: 20px;
  }

  .search-result-item p {
    font-size: 15px;
  }

  .search-result-item__image {
    width: 112px;
    height: 84px;
  }

  .search-result-item__actions {
    gap: var(--space-14, 14px);
  }
}

@media (max-width: 980px) {
  .make-author-profile-page .author-profile-layout {
    grid-template-columns: 1fr;
    gap: var(--space-40);
    align-items: start;
  }

  .make-author-profile-page .author-profile-card {
    max-width: 420px;
  }
}

@media (max-width: 680px) {
  .make-author-profile-page .author-profile-section {
    padding: var(--space-32) 0 var(--space-48);
  }

  .make-author-profile-page .author-profile-shell {
    width: min(100% - 32px, 1160px);
  }

  .make-author-profile-page .author-profile-layout {
    gap: var(--space-32);
    padding-bottom: var(--space-40);
  }

  .make-author-profile-page .author-profile-card {
    padding: var(--space-24);
    border-radius: 18px;
  }

  .make-author-profile-page .author-profile-card__identity {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: var(--space-18);
  }

  .make-author-profile-page .author-profile-card__avatar {
    width: 84px;
    height: 84px;
    font-size: 28px;
  }

  .make-author-profile-page .author-profile-card h2 {
    font-size: 28px;
  }

  .make-author-profile-page .author-profile-about h1 {
    font-size: 38px;
  }

  .make-author-profile-page .author-profile-about__facts p,
  .make-author-profile-page .author-profile-about__text p {
    font-size: 16px;
  }

  .make-author-profile-page .author-profile-feed {
    padding-top: var(--space-32);
  }

  .make-author-profile-page .author-profile-feed__head {
    display: grid;
    align-items: start;
  }

  .make-author-profile-page .author-profile-feed__head h2 {
    font-size: 32px;
  }

  .make-author-profile-page .author-profile-article {
    grid-template-columns: 1fr;
    gap: var(--space-18);
    padding: 22px 0;
  }

  .make-author-profile-page .author-profile-article__image {
    order: -1;
    width: 100%;
  }

  .make-author-profile-page .author-profile-article h3 {
    font-size: 24px;
  }

  .make-author-profile-page .author-profile-article__excerpt {
    font-size: 16px;
  }
}

.make-article-redesign-page .redesign-article__meta {
  display: grid;
  gap: var(--space-24);
  margin-top: var(--space-24);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--travel-pine-8);
  border-bottom: 1px solid var(--travel-pine-8);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 500;
}

.make-article-redesign-page .redesign-article__byline,
.make-article-redesign-page .redesign-article__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.make-article-redesign-page .redesign-article__byline {
  gap: var(--space-12);
}

.make-article-redesign-page .redesign-article__author-avatar {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 14px;
  font-weight: 700;
}

.make-article-redesign-page .redesign-article__author-name {
  font-size: 16px;
  font-weight: 600;
}

.make-article-redesign-page .redesign-article__author-avatar::before,
.make-article-redesign-page .redesign-article__author-name::before {
  content: none !important;
}

.make-article-redesign-page .redesign-article__follow {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--travel-pine);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.make-article-redesign-page .redesign-article__follow:hover,
.make-article-redesign-page .redesign-article__follow:focus-visible {
  background: var(--travel-pine-8);
}

.make-article-redesign-page .redesign-article__follow.is-active {
  background: var(--travel-pine);
  color: var(--travel-surface);
}

.make-article-redesign-page .redesign-article__read-time,
.make-article-redesign-page .redesign-article__published {
  color: rgba(2, 43, 27, 0.58);
}

.make-article-redesign-page .redesign-article__read-time::before,
.make-article-redesign-page .redesign-article__published::before {
  content: '' !important;
  width: 4px;
  height: 4px;
  display: inline-block;
  margin: 0 var(--space-12) 3px 0;
  border-radius: var(--radius-pill);
  background: currentColor;
}

.make-article-redesign-page .redesign-article__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--travel-pine-8);
  border-bottom: 0;
}

.make-article-redesign-page .redesign-article__actions-group {
  display: flex;
  align-items: center;
  gap: var(--space-32);
}

.make-article-redesign-page .redesign-article__actions-group--tools {
  margin-left: auto;
}

.make-article-redesign-page .redesign-article__actions button,
.make-article-redesign-page .redesign-article__actions a {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  border: 0;
  background: transparent;
  color: rgba(2, 43, 27, 0.62);
  font: inherit;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}

.make-article-redesign-page .redesign-article__actions svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.make-article-redesign-page .redesign-article__actions button:hover,
.make-article-redesign-page .redesign-article__actions a:hover,
.make-article-redesign-page .redesign-article__actions button:focus-visible,
.make-article-redesign-page .redesign-article__actions a:focus-visible {
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-article__action.is-active {
  color: var(--travel-pine);
}

.make-article-redesign-page .redesign-article__action.is-active svg {
  fill: currentColor;
}

.make-article-redesign-page .redesign-article__more {
  position: relative;
  display: inline-flex;
}

.make-article-redesign-page .redesign-article__more-menu {
  position: absolute;
  top: calc(100% + var(--space-8));
  right: 0;
  z-index: 20;
  width: 220px;
  padding: var(--space-8);
  border: 1px solid var(--travel-pine-8);
  border-radius: var(--radius-medium);
  background: var(--travel-surface);
  box-shadow: var(--travel-shadow-soft);
}

.make-article-redesign-page .redesign-article__more-menu button {
  width: 100%;
  min-height: 40px;
  justify-content: flex-start;
  padding: 0 var(--space-12);
  border-radius: var(--radius-small);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 600;
}

.make-article-redesign-page .redesign-article__more-menu button:hover,
.make-article-redesign-page .redesign-article__more-menu button:focus-visible {
  background: var(--travel-pine-8);
}

.make-article-redesign-page .redesign-article__body-section {
  padding-bottom: var(--space-32);
}

.make-article-redesign-page .redesign-comments {
  padding: var(--space-32) 0;
}

.make-article-redesign-page .redesign-comments__head {
  justify-content: flex-start;
  margin-bottom: var(--space-32);
}

.make-article-redesign-page .make-comment-form {
  display: grid;
}

.make-article-redesign-page .make-comment-field {
  display: block;
}

@media (max-width: 680px) {
  .make-article-redesign-page .redesign-article__meta {
    gap: var(--space-18);
  }

  .make-article-redesign-page .redesign-article__actions {
    justify-content: flex-start;
  }
}

.make-article-redesign-page .make-article-prose .article-media-strip,
.make-article-redesign-page .make-article-prose .article-media-strip--gallery,
.make-article-redesign-page .make-article-prose .article-media-strip--slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: var(--space-16);
  overflow: visible;
  margin: var(--space-32) 0;
  padding: 0;
}

.make-article-redesign-page .make-article-prose .article-media-strip figure {
  min-width: 0;
  margin: 0;
}

.make-article-redesign-page .make-article-prose .article-media-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.make-article-redesign-page .make-article-prose .article-media-strip figcaption {
  margin-top: var(--space-8);
  color: rgba(2, 43, 27, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.make-article-redesign-page .make-article-prose .article-inline-figure {
  margin: var(--space-32) 0;
}

.make-article-redesign-page .make-article-prose .article-inline-figure img {
  width: 100%;
  display: block;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.make-article-redesign-page .make-article-prose .article-inline-figure figcaption {
  margin-top: var(--space-10);
  color: rgba(2, 43, 27, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.make-article-redesign-page .redesign-comment-composer {
  align-items: start;
  margin-bottom: var(--space-32);
}

.make-article-redesign-page .redesign-comment-composer__label {
  min-height: 32px;
  display: flex;
  align-items: center;
}

.make-article-redesign-page .redesign-comment-collapsed {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 10px;
  background: rgba(2, 43, 27, 0.035);
  color: rgba(2, 43, 27, 0.48);
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.make-article-redesign-page .redesign-comment-composer:not(.is-open) .make-comment-field,
.make-article-redesign-page .redesign-comment-composer:not(.is-open) .make-comment-form__footer {
  display: none;
}

.make-article-redesign-page .redesign-comment-composer.is-open .redesign-comment-collapsed {
  display: none;
}

.make-article-redesign-page .redesign-comment-composer.is-open .make-comment-form {
  gap: var(--space-18);
  padding: 28px 30px 26px;
  border-radius: var(--radius-small);
  background: rgba(2, 43, 27, 0.04);
}

.make-article-redesign-page .redesign-comment-composer.is-open .make-comment-field textarea {
  min-height: 164px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  resize: vertical;
}

.make-article-redesign-page .redesign-comment-composer.is-open .make-comment-form__footer {
  align-items: center;
  margin-top: 0;
  padding: 20px 4px 0;
  border-top: 1px solid rgba(2, 43, 27, 0.08);
}

.make-article-redesign-page .redesign-comment-composer.is-open .make-comment-form__footer p {
  max-width: 520px;
  color: rgba(2, 43, 27, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.make-article-redesign-page .make-comment-form__actions {
  display: inline-flex;
  align-items: center;
  gap: var(--space-16);
  margin-left: auto;
}

.make-article-redesign-page .make-comment-cancel {
  min-height: 40px;
  padding: 0 var(--space-12);
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.make-article-redesign-page .redesign-comment-composer.is-open .make-button--primary-context {
  min-height: 44px;
  padding: 0 var(--space-24);
}

@media (max-width: 720px) {
  .make-article-redesign-page .make-article-prose .article-media-strip,
  .make-article-redesign-page .make-article-prose .article-media-strip--gallery,
  .make-article-redesign-page .make-article-prose .article-media-strip--slider {
    grid-template-columns: 1fr;
  }

  .make-article-redesign-page .make-comment-form__footer {
    display: grid;
    gap: var(--space-14);
  }

  .make-article-redesign-page .redesign-comment-composer.is-open .make-comment-form {
    padding: 22px 18px 20px;
  }

  .make-article-redesign-page .redesign-comment-composer.is-open .make-comment-field textarea {
    padding: 0;
  }

  .make-article-redesign-page .redesign-comment-composer.is-open .make-comment-form__footer {
    padding: 18px 0 0;
  }

  .make-article-redesign-page .make-comment-form__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.make-write-page .write-studio {
  background: var(--travel-white);
}

.make-write-page .write-studio__topbar {
  width: min(1160px, calc(100% - 48px));
  border-bottom: 1px solid var(--travel-pine-8);
  background: var(--travel-white);
}

.make-write-page .write-studio__form {
  min-height: 100vh;
}

.make-write-page .write-studio__logo {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
}

.make-write-page .write-studio__brand span {
  font-size: 13px;
}

.make-write-page .write-studio__publish {
  min-height: 40px;
  padding: 0 var(--space-20);
  background: var(--travel-pine);
  color: var(--travel-surface);
}

.make-write-page .write-studio__icon:hover,
.make-write-page .write-studio__back:hover {
  background: var(--travel-pine-8);
}

.make-write-page .write-editor {
  width: min(760px, calc(100% - 48px));
  margin-top: var(--space-72);
}

.make-write-page .write-editor__title {
  min-height: 82px;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 0;
}

.make-write-page .write-editor__title::placeholder {
  color: rgba(2, 43, 27, 0.24);
}

.make-write-page .write-editor__body-row {
  grid-template-columns: 52px minmax(0, 1fr);
  margin-top: var(--space-8);
}

.make-write-page .write-editor__add {
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.make-write-page .write-editor__body-row:hover .write-editor__add,
.make-write-page .write-editor__body-row:focus-within .write-editor__add,
.make-write-page .write-editor__add[aria-expanded="true"] {
  opacity: 1;
  transform: translateY(0);
}

.make-write-page .write-editor__add:hover,
.make-write-page .write-editor__add[aria-expanded="true"] {
  border-color: var(--travel-pine);
  background: var(--travel-surface);
  color: var(--travel-pine);
}

.make-write-page .write-editor__surface {
  min-height: 620px;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.58;
}

.make-write-page .write-editor__surface:focus {
  outline: 0;
}

.make-write-page .write-editor__surface:empty::before {
  color: rgba(2, 43, 27, 0.32);
}

.make-write-page .write-insert-menu {
  left: 52px;
  top: 118px;
  border-radius: var(--radius-small);
  background: var(--travel-surface);
}

.make-write-page .write-insert-menu button,
.make-write-page .write-insert-menu__item {
  border-color: var(--travel-pine-16);
  gap: var(--space-8);
}

.make-write-page .write-insert-menu button:hover,
.make-write-page .write-insert-menu__item:hover {
  border-color: var(--travel-pine);
}

.make-write-page .write-insert-menu__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--travel-pine);
}

.make-write-page .write-insert-menu__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.make-write-page .write-insert-menu__label {
  white-space: nowrap;
}

.make-write-page .write-preview-step {
  background: var(--travel-white);
}

.make-write-page .write-preview-step__layout {
  width: min(980px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) 320px;
}

.make-write-page .write-preview-card__image {
  border: 1.5px solid rgba(2, 43, 27, 0.34);
  border-radius: var(--radius-small);
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.08);
}

.make-write-page .write-publish-panel__submit {
  color: var(--button-primary-text);
}

@media (max-width: 860px) {
  .make-write-page .write-editor {
    width: calc(100% - 36px);
    margin-top: var(--space-48);
  }

  .make-write-page .write-editor__body-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .make-write-page .write-editor__add {
    opacity: 1;
    margin-bottom: 0;
  }
}

.make-write-page .write-editor__title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.make-write-page .write-editor__title-label {
  display: none;
  color: rgba(2, 43, 27, 0.48);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}

.make-write-page .write-editor__title-wrap:focus-within {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: var(--space-24);
}

.make-write-page .write-editor__title-wrap:focus-within .write-editor__title-label {
  display: block;
  padding-top: 18px;
}

.make-write-page .write-editor__title-wrap:focus-within .write-editor__title {
  padding-left: var(--space-24);
  border-left: 1px solid rgba(2, 43, 27, 0.18);
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 64px);
  line-height: 1.08;
}

@media (max-width: 720px) {
  .make-write-page .write-editor__title-wrap:focus-within {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .make-write-page .write-editor__title-wrap:focus-within .write-editor__title-label {
    padding-top: 0;
    text-align: left;
  }

  .make-write-page .write-editor__title-wrap:focus-within .write-editor__title {
    padding-left: var(--space-16);
  }
}

/* Medium-style writing surface */
body.make-write-page,
.make-write-page .write-studio {
  background: #fff;
  color: #242424;
}

.make-write-page .write-studio__topbar {
  width: min(1120px, calc(100% - 48px));
  min-height: 76px;
  border-bottom: 0;
  background: #fff;
}

.make-write-page .write-studio__back {
  display: none;
}

.make-write-page .write-studio__brand,
.make-write-page .write-studio__actions {
  gap: 16px;
}

.make-write-page .write-studio__actions {
  position: relative;
}

.make-write-page .write-studio__logo {
  color: #111;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.make-write-page .write-studio__logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  min-width: 220px;
  height: 44px;
  color: var(--travel-pine);
  line-height: 1;
}

.make-write-page .write-studio__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.make-write-page .write-studio__brand span {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 500;
}

.make-write-page .write-studio__brand span:first-of-type {
  color: var(--travel-pine);
  font-weight: 600;
}

.make-write-page .write-studio__brand span:nth-of-type(2) {
  color: rgba(2, 43, 27, 0.46);
}

.make-write-page .write-studio__brand span:nth-of-type(2)[hidden] {
  display: none;
}

.make-write-page .write-studio__publish {
  min-height: 34px;
  min-width: 96px;
  padding: 0 14px;
  border-color: transparent;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  font: 600 14px/1 var(--font-sans);
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.make-write-page .write-studio__publish:hover {
  background: var(--button-primary-hover-bg);
  color: var(--button-primary-text);
}

.make-write-page .write-studio__publish.is-loading,
.make-write-page .write-studio__publish:disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: wait;
  opacity: 0.86;
}

.make-write-page .write-studio__publish.is-loading::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid rgba(2, 43, 27, 0.22);
  border-top-color: var(--button-primary-text);
  border-radius: 999px;
  animation: writePublishSpin 0.72s linear infinite;
}

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

.make-write-page .write-studio__icon {
  width: 32px;
  height: 32px;
  color: #6b6b6b;
  font-size: 18px;
}

.make-write-page .write-studio__icon:hover {
  background: #f2f2f2;
  color: #242424;
}

.make-write-page .write-studio__icon--coauthor {
  color: var(--travel-pine);
}

.make-write-page .write-coauthor-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 140;
  width: min(420px, calc(100vw - 32px));
  padding: 18px 18px 14px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 24px;
  background: #fff;
  color: #242424;
  box-shadow: 0 22px 52px rgba(2, 43, 27, 0.18);
  animation: writeCoauthorIn 160ms ease-out both;
}

.make-write-page .write-coauthor-popover[hidden] {
  display: none;
}

.make-write-page .write-coauthor-popover__field {
  margin-top: 18px;
}

.make-write-page .write-coauthor-popover__field input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(2, 43, 27, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--travel-pine);
  font: 500 14px/1 var(--font-sans);
}

.make-write-page .write-coauthor-popover__field input:focus {
  border-color: var(--travel-pine);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(2, 43, 27, 0.08);
}

.make-write-page .write-coauthor-popover__illustration {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.make-write-page .write-coauthor-popover__illustration img {
  width: 178px;
  height: 150px;
  display: block;
  object-fit: contain;
}

.make-write-page .write-coauthor-popover h2 {
  margin: 0;
  color: #242424;
  font: 700 18px/1.25 var(--font-sans);
  text-align: center;
}

.make-write-page .write-coauthor-popover p {
  max-width: 310px;
  margin: 0 auto;
  color: rgba(36, 36, 36, 0.66);
  font: 400 14px/1.55 var(--font-sans);
  text-align: center;
}

.make-write-page .write-coauthor-popover__submit {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--travel-green);
  color: var(--travel-pine);
  font: 700 14px/1 var(--font-sans);
  cursor: pointer;
}

.make-write-page .write-coauthor-popover__submit:hover {
  background: rgba(0, 211, 127, 0.82);
}

.make-write-page .write-coauthor-popover__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.make-write-page .write-coauthor-popover .write-coauthor-popover__status {
  min-height: 20px;
  color: var(--travel-pine);
  font-size: 13px;
}

.make-write-page .write-coauthor-popover .write-coauthor-popover__status[hidden] {
  display: none;
}

.make-write-page .write-coauthor-popover .write-coauthor-popover__status:empty {
  display: none;
  min-height: 0;
}

.make-write-page .write-coauthor-popover .write-coauthor-popover__status.is-error {
  color: #b3261e;
}

.make-write-page .write-toast {
  position: fixed;
  right: clamp(20px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 220;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--travel-pine);
  color: #fff;
  box-shadow: 0 18px 46px rgba(2, 43, 27, 0.18);
  font: 700 14px/1.25 var(--font-sans);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transition:
    opacity 220ms var(--motion-ease-emphasis),
    transform 220ms var(--motion-ease-emphasis);
}

.make-write-page .write-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.make-write-page .write-toast[hidden] {
  display: none;
}

@keyframes writeCoauthorIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.make-write-page .write-studio__more {
  position: relative;
  display: inline-flex;
}

.make-write-page .write-studio__more-menu {
  right: 0;
  left: auto;
  min-width: 236px;
  padding: 8px;
}

.make-write-page .write-studio__more-menu button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--travel-pine);
  font: 600 14px/1.25 var(--font-sans);
  text-align: left;
  cursor: pointer;
}

.make-write-page .write-studio__more-menu button:hover,
.make-write-page .write-studio__more-menu button:focus-visible {
  background: rgba(2, 43, 27, 0.08);
  outline: 0;
}

.make-write-page .write-studio__icon svg,
.make-write-page .write-studio__avatar svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.make-write-page .write-studio__avatar {
  width: 40px;
  height: 40px;
  border: 1px solid var(--travel-green);
  border-radius: 50%;
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 16px;
  font-weight: 700;
}

.make-write-page .write-editor {
  width: min(756px, calc(100% - 64px));
  box-sizing: border-box;
  padding-left: 64px;
  margin: 80px auto 0;
  transform: translateX(-32px);
}

.make-write-page .write-editor__title-wrap,
.make-write-page .write-editor__title-wrap:focus-within {
  display: block;
}

.make-write-page .write-editor__title-label,
.make-write-page .write-editor__title-wrap:focus-within .write-editor__title-label {
  display: none;
}

.make-write-page .write-editor__title,
.make-write-page .write-editor__title:focus,
.make-write-page .write-editor__title-wrap:focus-within .write-editor__title {
  min-height: 58px;
  padding: 0;
  border: 0;
  outline: 0;
  color: #242424;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.make-write-page .write-editor__title::placeholder {
  color: #b3b3b1;
}

.make-write-page .write-editor__body-row {
  position: relative;
  display: block;
  margin-top: 14px;
}

.make-write-page .write-editor__add {
  position: absolute;
  left: -64px;
  top: 1px;
  z-index: 64;
  width: 48px;
  height: 48px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #8a8a8a;
  border-radius: 999px;
  background: #fff;
  color: #6b6b6b;
  font-size: 0;
  opacity: 1;
  transform: none;
}

.make-write-page .write-editor__add::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background:
    linear-gradient(currentColor, currentColor) center / 18px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 18px no-repeat;
}

.make-write-page .write-editor__add[aria-expanded="true"]::before {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
}

.make-write-page .write-editor__add[hidden] {
  display: none;
}

.make-write-page .write-editor__body-row:hover .write-editor__add,
.make-write-page .write-editor__body-row:focus-within .write-editor__add,
.make-write-page .write-editor__add[aria-expanded="true"] {
  opacity: 1;
  transform: none;
}

.make-write-page .write-editor__add:hover,
.make-write-page .write-editor__add[aria-expanded="true"] {
  border-color: #6b6b6b;
  background: #fff;
  color: #242424;
}

.make-write-page .write-editor__surface {
  position: relative;
  min-height: 640px;
  padding: 0 0 96px;
  color: #242424;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.58;
}

.make-write-page .write-editor__surface:empty::before,
.make-write-page .write-editor__surface.is-empty::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0 auto auto 0;
  color: #b3b3b1;
  pointer-events: none;
}

.make-write-page .write-editor__surface h2,
.make-write-page .write-editor__surface h3 {
  color: #242424;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 700;
}

.make-write-page .write-editor__surface .write-editor-media,
.make-write-page .write-editor__surface .write-editor-embed {
  margin: 30px 0;
}

.make-write-page .write-editor__surface .write-editor-media img {
  width: 100%;
  max-height: 460px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.make-write-page .write-editor__surface .write-editor-media figcaption,
.make-write-page .write-editor__surface .write-editor-embed figcaption {
  margin-top: 10px;
  color: #8a8a8a;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
}

.make-write-page .write-editor__surface .write-editor-media figcaption {
  min-height: 20px;
  outline: 0;
}

.make-write-page .write-editor__surface .write-editor-media figcaption:empty::before {
  content: attr(data-placeholder);
  color: #8a8a8a;
}

.make-write-page .write-editor__surface .write-editor-media figcaption:focus::before {
  content: "";
}

.make-write-page .write-editor__surface .write-editor-embed {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 36, 36, 0.14);
  border-radius: 8px;
  background: #fafafa;
  font-family: var(--font-sans);
}

.make-write-page .write-editor__surface .write-editor-embed strong {
  color: #242424;
  font-size: 15px;
}

.make-write-page .write-editor__surface .write-editor-embed a {
  color: var(--travel-pine);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.make-write-page .write-editor__surface .write-editor-attachment {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  margin: 24px 0;
  padding: 12px 16px;
  border: 1px solid rgba(36, 36, 36, 0.14);
  border-radius: 999px;
  background: #fafafa;
  color: #242424;
  font-family: var(--font-sans);
  font-size: 15px;
}

.make-write-page .write-editor__surface .write-editor-attachment::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  background:
    linear-gradient(currentColor, currentColor) 4px 13px / 8px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) 4px 3px / 7px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) 4px 3px / 1.5px 10px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 5px / 1.5px 8px no-repeat;
  opacity: 0.72;
}

.make-write-page .write-editor__surface .write-editor-attachment span {
  color: #8a8a8a;
}

.make-write-page .write-editor__surface .write-editor-divider {
  width: 44%;
  max-width: 280px;
  height: 1px;
  margin: 36px auto;
  border: 0;
  background: repeating-linear-gradient(90deg, #6b6b6b 0 4px, transparent 4px 9px);
}

.make-write-page .write-insert-menu {
  left: -64px;
  top: var(--write-insert-menu-top, 2px);
  z-index: 66;
  gap: 11px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(58px);
  transform-origin: left center;
  animation: writeInsertMenuIn 180ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.make-write-page .write-insert-menu button,
.make-write-page .write-insert-menu__item {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  justify-content: center;
  border: 1px solid #35a838;
  border-radius: 999px;
  background: #fff;
  color: #35a838;
  font-size: 0;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.make-write-page .write-insert-menu [data-insert-block="separator"] {
  width: 82px;
  min-width: 82px;
  border-radius: 999px;
}

.make-write-page .write-insert-menu button:hover,
.make-write-page .write-insert-menu__item:hover {
  border-color: #1a8917;
  color: #1a8917;
  background: #f7fff7;
  transform: translateY(-1px);
}

.make-write-page .write-insert-menu__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.make-write-page .write-insert-menu__icon,
.make-write-page .write-insert-menu__icon svg {
  width: 21px;
  height: 21px;
}

.make-write-page .write-insert-menu [data-insert-block="separator"] .write-insert-menu__icon,
.make-write-page .write-insert-menu [data-insert-block="separator"] .write-insert-menu__icon svg {
  width: 58px;
  height: 24px;
}

.make-write-page .write-insert-menu__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@keyframes writeInsertMenuIn {
  from {
    opacity: 0;
    transform: translateX(48px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(58px) scale(1);
  }
}

@keyframes writeInsertMenuMobileIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .make-write-page .write-insert-menu {
    animation: none;
  }

  .make-write-page .write-toast {
    transition: none;
    transform: none;
  }
}

.make-write-page .write-toolbar {
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(2, 43, 27, 0.14);
}

.make-write-page .write-toolbar button {
  min-width: 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.make-write-page .write-toolbar button[data-format-link] {
  width: 48px;
}

.make-write-page .write-toolbar svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.make-write-page .write-toolbar button.is-active,
.make-write-page .write-toolbar button[aria-pressed="true"] {
  background: rgba(2, 43, 27, 0.08);
  color: var(--travel-pine);
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.08);
}

.make-write-page .write-help-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 92;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 50%;
  background: #fff;
  color: var(--travel-pine);
  box-shadow: 0 18px 42px rgba(2, 43, 27, 0.12);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.make-write-page .write-help-fab:hover {
  transform: translateY(-1px);
  background: rgba(2, 43, 27, 0.04);
  box-shadow: 0 22px 54px rgba(2, 43, 27, 0.16);
}

.make-write-page .write-help-fab svg,
.make-write-page .write-help__nav svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.make-write-page .write-help {
  position: fixed;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 110;
  min-height: 250px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 16px;
  padding: 34px 56px 30px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 80px rgba(2, 43, 27, 0.16);
}

.make-write-page .write-help[hidden] {
  display: none;
}

.make-write-page .write-help__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(2, 43, 27, 0.62);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.make-write-page .write-help__close:hover,
.make-write-page .write-help__nav:hover {
  background: rgba(2, 43, 27, 0.06);
  color: var(--travel-pine);
}

.make-write-page .write-help__nav {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(2, 43, 27, 0.54);
  cursor: pointer;
}

.make-write-page .write-help__slides {
  min-height: 170px;
  padding-bottom: 32px;
}

.make-write-page .write-help__slide {
  max-width: 760px;
  min-height: 170px;
  margin: 0 auto 16px;
  display: none;
  place-items: center;
  text-align: center;
}

.make-write-page .write-help__slide.is-active {
  display: grid;
  gap: 12px;
}

.make-write-page .write-help__kicker {
  margin: 0;
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.make-write-page .write-help__slide h2 {
  margin: 0;
  color: #242424;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.45vw, 32px);
  font-weight: 500;
  line-height: 1.14;
}

.make-write-page .write-help__slide > p:not(.write-help__kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(36, 36, 36, 0.68);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.make-write-page .write-help kbd {
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  padding: 4px 9px;
  border: 1px solid rgba(36, 36, 36, 0.18);
  border-radius: 7px;
  background: #fff;
  color: #242424;
  font: 600 14px/1 var(--font-sans);
  box-shadow: 0 1px 0 rgba(36, 36, 36, 0.06);
}

.make-write-page .write-help__toolbar-demo,
.make-write-page .write-help__topbar-demo,
.make-write-page .write-help__shortcut-grid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(2, 43, 27, 0.08);
}

.make-write-page .write-help__toolbar-demo > *,
.make-write-page .write-help__topbar-demo > * {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--travel-pine);
  font: 700 16px/1 var(--font-sans);
}

.make-write-page .write-help__toolbar-demo > :first-child {
  background: rgba(2, 43, 27, 0.08);
}

.make-write-page .write-help__block-demo {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.make-write-page .write-help__plus {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(36, 36, 36, 0.7);
  border-radius: 50%;
  color: #242424;
  font-size: 30px;
  line-height: 1;
}

.make-write-page .write-help__line {
  height: 1px;
  background: rgba(36, 36, 36, 0.18);
}

.make-write-page .write-help__text-demo {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  border-left: 3px solid var(--travel-green);
  color: #242424;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 20px;
  text-align: left;
}

.make-write-page .write-help__topbar-demo strong {
  min-width: 120px;
  border-radius: 999px;
  background: var(--travel-green);
  color: var(--travel-pine);
}

.make-write-page .write-help__topbar-demo {
  gap: 10px;
  padding: 12px 14px;
}

.make-write-page .write-help__dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  display: inline-flex;
  justify-content: center;
  gap: 7px;
}

.make-write-page .write-help__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.18);
  cursor: pointer;
}

.make-write-page .write-help__dot.is-active {
  width: 22px;
  background: var(--travel-green);
}

@media (max-width: 860px) {
  .make-write-page .write-studio__topbar {
    width: calc(100% - 32px);
  }

  .make-write-page .write-studio__logo {
    width: 124px;
    min-width: 124px;
    height: 25px;
  }

  .make-write-page .write-studio__brand span:nth-of-type(2),
  .make-write-page .write-studio__icon--bell {
    display: none;
  }

  .make-write-page .write-coauthor-popover {
    right: -42px;
  }

  .make-write-page .write-toast {
    right: 16px;
    bottom: 20px;
    left: 16px;
    max-width: none;
    text-align: center;
  }

  .make-write-page .write-editor {
    width: calc(100% - 44px);
    padding-left: 0;
    margin-top: 48px;
    transform: none;
  }

  .make-write-page .write-editor__title,
  .make-write-page .write-editor__title-wrap:focus-within .write-editor__title {
    font-size: 38px;
  }

  .make-write-page .write-editor__add {
    position: static;
    margin-bottom: 16px;
    opacity: 1;
  }

  .make-write-page .write-insert-menu {
    left: 0;
    top: 56px;
    max-width: calc(100vw - 100px);
    overflow-x: auto;
    transform: none;
    animation-name: writeInsertMenuMobileIn;
  }

  .make-write-page .write-editor__surface {
    min-height: 560px;
    font-size: 21px;
  }

  .make-write-page .write-toolbar {
    max-width: calc(100vw - 28px);
    overflow-x: auto;
  }

  .make-write-page .write-help-fab {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .make-write-page .write-help {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 300px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
    padding: 42px 14px 38px;
  }

  .make-write-page .write-help__nav {
    width: 40px;
    height: 40px;
  }

  .make-write-page .write-help__slide h2 {
    font-size: 24px;
  }

  .make-write-page .write-help__slide > p:not(.write-help__kicker) {
    font-size: 15px;
  }

  .make-write-page .write-help__toolbar-demo {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }
}

.make-dashboard-page main {
  background: var(--travel-white);
}

.profile-dashboard {
  min-height: calc(100vh - 72px);
}

.profile-dashboard__shell {
  width: min(100%, 1280px);
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  margin: 0 auto;
}

.profile-sidebar {
  min-height: calc(100vh - 72px);
  padding: 48px 44px;
  border-right: 1px solid rgba(2, 43, 27, 0.12);
}

.profile-sidebar h1,
.profile-section__heading h2 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.profile-sidebar__nav {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.profile-sidebar__item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--travel-pine);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.profile-sidebar__item:hover,
.profile-sidebar__item:focus-visible,
.profile-sidebar__item.is-active {
  background: rgba(2, 43, 27, 0.08);
}

.profile-sidebar__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-surface);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 800;
}

.profile-sidebar__icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-sidebar__item.is-active .profile-sidebar__icon {
  background: var(--travel-surface);
  color: var(--travel-pine);
}

.profile-sidebar__actions {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.profile-sidebar__actions .make-button {
  justify-content: center;
}

.profile-sidebar__write {
  gap: 10px;
}

.profile-sidebar__write svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-sidebar__logout {
  color: rgba(2, 43, 27, 0.66);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.profile-dashboard__content {
  display: grid;
  gap: 54px;
  padding: 48px 54px 80px;
}

.profile-dashboard__notice {
  margin: 0;
}

.profile-section {
  scroll-margin-top: 96px;
}

.profile-section__heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.profile-section__heading span {
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
  font-weight: 600;
}

.profile-edit-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--button-secondary-border);
  border-radius: var(--radius-pill);
  background: var(--button-secondary-bg);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.profile-edit-button:hover,
.profile-edit-button:focus-visible {
  background: var(--button-secondary-hover-bg);
}

.profile-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.profile-identity-card {
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 32px;
  background: var(--travel-surface);
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.08);
  text-align: center;
}

.profile-identity-card__avatar {
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 46px;
  font-weight: 800;
}

.profile-mobile-identity__avatar img,
.profile-identity-card__avatar img,
.profile-settings-profile__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.profile-identity-card h3,
.profile-completion h3,
.profile-publication-card h3,
.profile-empty-state h3,
.profile-settings-card h3 {
  margin: 0;
  color: var(--travel-pine);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.profile-identity-card h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.profile-identity-card p,
.profile-completion p,
.profile-publication-card p,
.profile-settings-card p {
  margin: 8px 0 0;
  color: rgba(2, 43, 27, 0.62);
  line-height: 1.48;
}

.profile-about-filled {
  width: min(100%, 860px);
  display: grid;
  justify-items: stretch;
  gap: 36px;
  margin: 0 auto;
}

.profile-identity-card--filled {
  width: min(100%, 360px);
  min-height: 238px;
  justify-self: center;
  padding: 32px 34px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(2, 43, 27, 0.08);
}

.profile-identity-card--filled .profile-identity-card__avatar {
  width: 104px;
  height: 104px;
  margin-bottom: 14px;
  font-size: 42px;
}

.profile-identity-card--filled h3 {
  font-size: 32px;
}

.profile-identity-card--filled p {
  margin-top: 4px;
}

.profile-about-filled__bio {
  max-width: 680px;
  margin: 0;
  color: rgba(2, 43, 27, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

.profile-about-interests {
  display: grid;
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(2, 43, 27, 0.14);
}

.profile-about-interests h3 {
  margin: 0;
  color: var(--travel-pine);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-about-interests__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 42px;
}

.profile-about-interests__list span,
.profile-about-reviews {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(2, 43, 27, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.profile-about-interests__list i,
.profile-about-reviews span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 auto;
}

.profile-about-interests__list svg,
.profile-about-reviews svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-about-reviews {
  padding-top: 32px;
  border-top: 1px solid rgba(2, 43, 27, 0.14);
  text-decoration: none;
}

.profile-about-reviews:hover,
.profile-about-reviews:focus-visible {
  color: var(--travel-pine);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.profile-completion h3 {
  font-size: 24px;
  font-weight: 800;
}

.profile-completion .make-button {
  margin-top: 22px;
}

.profile-about-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(2, 43, 27, 0.12);
}

.profile-about-meta div,
.profile-stat-card,
.profile-comment-card {
  padding: 22px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 8px;
  background: var(--travel-surface);
}

.profile-settings-card {
  padding: 22px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 24px;
  background: var(--travel-surface);
}

.profile-about-meta span,
.profile-stat-card span,
.profile-publication-card__meta {
  display: block;
  color: rgba(2, 43, 27, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.profile-about-meta strong {
  display: block;
  margin-top: 8px;
  color: var(--travel-pine);
  font-size: 16px;
  line-height: 1.35;
}

.profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.profile-stat-card strong {
  display: block;
  margin-top: 14px;
  color: var(--travel-pine);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.profile-section--stats {
  max-width: 900px;
}

.profile-section--stats .profile-section__heading {
  margin-bottom: 30px;
}

.make-tabs,
.profile-stats-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(2, 43, 27, 0.12);
}

.make-tabs button,
.profile-stats-tabs button {
  position: relative;
  min-height: 38px;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: rgba(2, 43, 27, 0.62);
  font: 500 14px/1.25 var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.make-tabs button span,
.profile-stats-tabs button span {
  color: rgba(2, 43, 27, 0.42);
  font-weight: 500;
}

.make-tabs button.is-active,
.profile-stats-tabs button.is-active {
  color: var(--travel-pine);
}

.make-tabs button.is-active::after,
.profile-stats-tabs button.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--travel-pine);
}

.profile-stats-period {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  margin-top: 34px;
}

.profile-stats-period h3,
.profile-stats-lifetime__heading h3 {
  margin: 0;
  color: var(--travel-pine);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.profile-stats-period p {
  margin: 8px 0 0;
  color: rgba(2, 43, 27, 0.56);
  font-size: 13px;
  line-height: 1.4;
}

.profile-stats-month-select {
  min-width: 150px;
  min-height: 42px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 500;
}

.profile-stats-month-select svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-stats-month-select--muted {
  color: rgba(2, 43, 27, 0.52);
}

.profile-stats-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.profile-stats-metric {
  display: grid;
  gap: 8px;
  text-align: center;
}

.profile-stats-metric strong {
  color: #242424;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.profile-stats-metric span {
  color: rgba(2, 43, 27, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.profile-stats-metric small {
  color: var(--travel-green);
  font-size: 12px;
  font-weight: 700;
}

.profile-stats-panel {
  display: none;
}

.profile-stats-panel.is-active {
  display: block;
}

.profile-stats-state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.profile-stats-state-grid article {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 8px;
  background: rgba(2, 43, 27, 0.025);
}

.profile-stats-state-grid strong {
  color: var(--travel-pine);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.profile-stats-state-grid span {
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  font-weight: 600;
}

.profile-stats-chart {
  margin-top: 40px;
}

.profile-stats-chart__plot {
  position: relative;
  min-height: 220px;
  overflow: visible;
  border-left: 1px solid rgba(2, 43, 27, 0.12);
  border-bottom: 1px solid rgba(2, 43, 27, 0.12);
  background:
    linear-gradient(to right, rgba(2, 43, 27, 0.08) 1px, transparent 1px) 0 0 / 16.666% 100%,
    linear-gradient(to bottom, rgba(2, 43, 27, 0.07) 1px, transparent 1px) 0 0 / 100% 50%;
}

.profile-stats-chart__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.profile-stats-chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
}

.profile-stats-chart__line--views {
  stroke: rgba(9, 176, 117, 0.36);
}

.profile-stats-chart__line--reads {
  stroke: var(--travel-pine);
}

.profile-stats-chart__axis {
  position: absolute;
  left: -16px;
  color: rgba(2, 43, 27, 0.52);
  font-size: 11px;
}

.profile-stats-chart__axis--top {
  top: -4px;
}

.profile-stats-chart__axis--bottom {
  bottom: -4px;
}

.profile-stats-chart__baseline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--travel-pine);
}

.profile-stats-chart__hit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  z-index: 3;
  width: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: crosshair;
  transform: translateX(-50%);
}

.profile-stats-chart__hover-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(36, 36, 36, 0.45);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-stats-chart__dot {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--travel-white);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 6px 18px rgba(2, 43, 27, 0.18);
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-stats-chart__dot--views {
  top: var(--views-top);
  background: rgba(9, 176, 117, 0.38);
}

.profile-stats-chart__dot--reads {
  top: var(--reads-top);
  background: var(--travel-pine);
}

.profile-stats-tooltip {
  position: absolute;
  top: 26px;
  left: calc(50% + 12px);
  min-width: 158px;
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 6px;
  background: var(--travel-white);
  color: #242424;
  box-shadow: 0 16px 34px rgba(2, 43, 27, 0.14);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(10px) scale(0.98);
  transform-origin: top left;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-stats-chart__hit:nth-of-type(n + 6) .profile-stats-tooltip {
  right: calc(50% + 12px);
  left: auto;
  transform-origin: top right;
}

.profile-stats-tooltip strong {
  color: rgba(36, 36, 36, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.profile-stats-tooltip span {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: #242424;
  font-size: 14px;
}

.profile-stats-tooltip i {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(9, 176, 117, 0.28);
  border-radius: 50%;
}

.profile-stats-tooltip span:nth-of-type(2) i {
  border-color: var(--travel-pine);
  background: var(--travel-pine);
}

.profile-stats-tooltip b {
  font-weight: 600;
}

.profile-stats-chart__hit:hover .profile-stats-chart__hover-line,
.profile-stats-chart__hit:focus-visible .profile-stats-chart__hover-line,
.profile-stats-chart__hit:hover .profile-stats-chart__dot,
.profile-stats-chart__hit:focus-visible .profile-stats-chart__dot,
.profile-stats-chart__hit:hover .profile-stats-tooltip,
.profile-stats-chart__hit:focus-visible .profile-stats-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.profile-stats-chart__hit:hover .profile-stats-chart__dot,
.profile-stats-chart__hit:focus-visible .profile-stats-chart__dot {
  transform: translate(-50%, -50%) scale(1);
}

.profile-stats-chart__hit:hover .profile-stats-tooltip,
.profile-stats-chart__hit:focus-visible .profile-stats-tooltip {
  transform: translateY(0) scale(1);
}

.profile-stats-chart__hit:focus-visible {
  outline: 0;
}

.profile-stats-chart__ticks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  color: rgba(2, 43, 27, 0.54);
  font-size: 11px;
}

.profile-stats-chart__ticks span:nth-child(2) {
  text-align: center;
}

.profile-stats-chart__ticks span:last-child {
  text-align: right;
}

.profile-stats-chart__legend {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
  color: rgba(2, 43, 27, 0.58);
  font-size: 12px;
}

.profile-stats-chart__legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.profile-stats-chart__legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(9, 176, 117, 0.28);
}

.profile-stats-chart__legend span:last-child i {
  background: var(--travel-pine);
}

.profile-stats-lifetime {
  margin-top: 58px;
  padding-top: 40px;
  border-top: 1px solid rgba(2, 43, 27, 0.08);
}

.profile-stats-lifetime__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.profile-stats-table {
  margin-top: 36px;
}

.profile-stats-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 92px 92px 112px;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(2, 43, 27, 0.08);
  color: rgba(2, 43, 27, 0.68);
  font-size: 14px;
}

.profile-stats-table__row--head {
  min-height: 42px;
  color: rgba(2, 43, 27, 0.54);
  font-size: 12px;
}

.profile-stats-table__row a {
  color: var(--travel-pine);
  font-weight: 600;
  text-decoration: none;
}

.profile-stats-table__row a:hover,
.profile-stats-table__row a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.profile-stats-table .status {
  width: fit-content;
}

.profile-stats-table__empty {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(2, 43, 27, 0.08);
  color: rgba(2, 43, 27, 0.58);
  font-size: 14px;
}

.profile-stats-table__empty a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #242424;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.profile-stats-metrics--audience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.profile-stats-metrics--audience .profile-stats-metric {
  min-height: 128px;
  align-content: center;
  justify-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 8px;
  background: rgba(2, 43, 27, 0.025);
  text-align: left;
}

.profile-audience-growth {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  margin-top: 46px;
}

.profile-audience-growth + .profile-audience-growth {
  padding-top: 44px;
  border-top: 1px solid rgba(2, 43, 27, 0.08);
}

.profile-audience-growth__copy h3 {
  margin: 0;
  color: var(--travel-pine);
  font-size: 18px;
  font-weight: 700;
}

.profile-audience-growth__copy p {
  margin: 8px 0 22px;
  color: rgba(2, 43, 27, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.profile-audience-growth__copy div {
  display: flex;
  gap: 18px;
  align-items: end;
}

.profile-audience-growth__copy strong {
  color: #242424;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.profile-audience-growth__copy span {
  color: rgba(2, 43, 27, 0.56);
  font-size: 12px;
  font-weight: 600;
}

.profile-stats-chart--compact {
  margin-top: 0;
}

.profile-stats-chart--compact .profile-stats-chart__plot {
  min-height: 172px;
}

.profile-section__heading--publications {
  align-items: end;
  border-bottom: 1px solid rgba(2, 43, 27, 0.12);
  margin-bottom: 28px;
  padding-bottom: 24px;
}

.profile-publication-search {
  width: min(100%, 340px);
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 999px;
  background: var(--travel-white);
}

.profile-publication-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: 500 15px/1 var(--font-sans);
  outline: 0;
}

.profile-publication-search span {
  color: var(--travel-green);
  font-size: 15px;
  font-weight: 700;
}

.profile-publication-tabs {
  gap: 28px;
  margin-top: 0;
}

.profile-publication-tabs button {
  min-height: 38px;
}

.profile-publication-tabs button span {
  color: rgba(2, 43, 27, 0.42);
}

.profile-publication-tabs button.is-active {
  color: var(--travel-pine);
}

.profile-publication-panel {
  display: none;
}

.profile-publication-panel.is-active {
  display: block;
}

.profile-publication-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.profile-publication-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px 44px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(2, 43, 27, 0.1);
}

.profile-publication-card--managed {
  grid-template-columns: minmax(0, 1fr) 240px 44px;
  gap: 32px;
  min-height: 176px;
  align-items: center;
  padding: 28px 0;
}

.profile-publication-card--managed .profile-publication-card__content {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-width: 0;
}

.profile-publication-card.is-text-only {
  grid-template-columns: minmax(0, 1fr) 112px;
}

.profile-publication-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 12px;
}

.profile-publication-card__overlay:focus-visible {
  outline: 2px solid var(--travel-green);
  outline-offset: 4px;
}

.profile-publication-card h3 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.profile-publication-card--managed h3 {
  max-width: 620px;
  margin: 0;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.22;
}

.profile-publication-card--managed p {
  max-width: 620px;
  margin: 0;
  color: var(--travel-pine-muted);
  font-size: 15px;
  line-height: 1.5;
}

.profile-publication-card__image {
  position: relative;
  display: block;
  width: 168px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(2, 43, 27, 0.06);
}

.profile-publication-card--managed .profile-publication-card__image {
  justify-self: end;
  width: 240px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(2, 43, 27, 0.08);
}

.profile-publication-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.profile-publication-card--saved {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  padding-right: 0;
}

.profile-publication-card--saved.is-text-only {
  grid-template-columns: minmax(0, 1fr);
}

.profile-publication-card--saved .profile-publication-card__image {
  justify-self: end;
  width: 220px;
  border-radius: 10px;
}

.profile-saved-card__remove-form {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  margin: 0;
}

.profile-saved-card__remove {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--travel-pine);
  color: var(--travel-white);
  box-shadow: 0 12px 28px rgba(2, 43, 27, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.profile-saved-card__remove:hover,
.profile-saved-card__remove:focus-visible {
  transform: translateY(-1px);
  background: #001f14;
  box-shadow: 0 16px 32px rgba(2, 43, 27, 0.24);
}

.profile-saved-card__remove:focus-visible {
  outline: 2px solid var(--travel-green);
  outline-offset: 3px;
}

.profile-saved-card__remove svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.profile-publication-card__image .status {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(2, 43, 27, 0.12);
}

.profile-publication-card--managed .status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.profile-publication-card--managed .status-tone-draft {
  background: rgba(2, 43, 27, 0.08);
  color: rgba(2, 43, 27, 0.74);
}

.profile-publication-card--managed .status-tone-published {
  background: rgba(10, 204, 125, 0.14);
  color: var(--travel-pine);
}

.profile-publication-card--managed .status-tone-pending {
  background: rgba(224, 165, 25, 0.16);
  color: #7a5310;
}

.profile-publication-card--managed .status-tone-revision {
  background: rgba(210, 20, 48, 0.1);
  color: #d21430;
}

.profile-publication-card .status-rejected {
  background: #d21430;
  color: var(--travel-white);
  box-shadow: 0 10px 24px rgba(210, 20, 48, 0.22);
}

.profile-publication-card__actions {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: rgba(2, 43, 27, 0.56);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.profile-publication-card__menu {
  position: relative;
}

.profile-publication-card__menu summary {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(2, 43, 27, 0.62);
  cursor: pointer;
  list-style: none;
}

.profile-publication-card__menu summary::-webkit-details-marker {
  display: none;
}

.profile-publication-card__menu summary:hover,
.profile-publication-card__menu[open] summary {
  background: var(--travel-pine-8);
  color: var(--travel-pine);
}

.profile-publication-card__menu summary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.profile-publication-card__menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 10;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 14px;
  background: var(--travel-white);
  box-shadow: 0 24px 60px rgba(2, 43, 27, 0.14);
  text-align: left;
}

.profile-publication-card__actions form {
  margin: 0;
}

.profile-publication-card__actions button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--travel-pine);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  text-align: left;
}

.profile-publication-card__actions button:hover {
  background: var(--travel-pine-8);
}

.profile-publication-card__actions button.is-danger {
  color: #a33a2f;
}

.profile-publication-card__actions button.is-danger:hover {
  background: rgba(163, 58, 47, 0.08);
}

.profile-empty-state {
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 56px 24px;
  text-align: center;
}

.profile-empty-state__mark {
  width: 110px;
  height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #f5f5f4;
  color: rgba(2, 43, 27, 0.62);
}

.profile-empty-state__mark svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.profile-empty-state h3 {
  max-width: 460px;
  color: rgba(2, 43, 27, 0.54);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
}

.profile-empty-state .make-button {
  margin-top: 24px;
}

.profile-simple-empty {
  padding: 28px;
  border: 1px dashed rgba(2, 43, 27, 0.18);
  border-radius: 8px;
  color: rgba(2, 43, 27, 0.64);
  background: #fbfaf8;
  line-height: 1.5;
}

.profile-comment-list {
  display: grid;
  gap: 14px;
}

.profile-comment-card p {
  margin: 0;
  color: var(--travel-pine);
  line-height: 1.5;
}

.profile-comment-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: rgba(2, 43, 27, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.profile-comment-card a {
  color: var(--travel-pine);
}

.profile-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 20px;
}

.profile-settings-card--wide {
  grid-column: 1 / -1;
}

.profile-settings-card--profile {
  grid-column: 1 / -1;
}

.profile-settings-card h3 {
  font-size: 22px;
  font-weight: 800;
}

.profile-settings-card form {
  margin-top: 22px;
}

.profile-settings-card input:not([type="checkbox"]),
.profile-settings-card textarea {
  width: 100%;
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: 8px;
  background: var(--travel-white);
}

.profile-settings-card textarea {
  min-height: 128px;
  resize: vertical;
}

.profile-settings-card .make-button {
  margin-top: 8px;
}

.profile-settings-profile {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.profile-settings-profile__media {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: 10px;
}

.profile-settings-profile__avatar {
  width: 176px;
  height: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-pine);
  color: var(--travel-green);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 22px 48px rgba(2, 43, 27, 0.08);
  overflow: hidden;
}

.profile-settings-profile__photo {
  min-height: 36px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--travel-surface);
  color: #242424;
  box-shadow: 0 12px 26px rgba(2, 43, 27, 0.12);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.profile-settings-card input.profile-settings-profile__file {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.profile-settings-profile__photo svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-settings-profile__form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
}

.profile-settings-profile__form > .make-button {
  align-self: flex-end;
  margin-top: 24px;
}

.profile-settings-profile__intro {
  margin-bottom: 28px;
}

.profile-settings-profile__intro h3 {
  font-size: 30px;
  font-weight: 700;
}

.profile-settings-profile__intro p {
  max-width: 600px;
}

.profile-settings-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.profile-settings-interests {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(2, 43, 27, 0.12);
}

.profile-settings-interests h4 {
  margin: 0;
  color: #242424;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-settings-interests p {
  margin: 10px 0 0;
  color: rgba(2, 43, 27, 0.58);
}

.profile-settings-interest-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.profile-settings-interest-slots > span {
  min-width: 90px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(2, 43, 27, 0.34);
  border-radius: var(--radius-pill);
  color: rgba(2, 43, 27, 0.56);
  font-size: 24px;
  font-weight: 500;
}

.profile-settings-interest-slots > span.is-selected {
  min-width: auto;
  gap: 8px;
  padding: 0 18px;
  border-style: solid;
  border-color: rgba(2, 43, 27, 0.18);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 700;
}

.profile-settings-interest-slots > span.is-selected i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 auto;
}

.profile-settings-interest-slots > span.is-selected svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-settings-interest-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid var(--travel-pine);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.profile-settings-interest-button:hover,
.profile-settings-interest-button:focus-visible {
  background: rgba(2, 43, 27, 0.06);
  outline: 0;
}

.profile-interests-open {
  overflow: hidden;
}

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

.profile-interests-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.profile-interests-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 36, 0.42);
  backdrop-filter: blur(1px);
}

.profile-interests-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(760px, calc(100vh - 64px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: var(--travel-white);
  color: var(--travel-pine);
  box-shadow: 0 28px 80px rgba(2, 43, 27, 0.22);
}

.profile-interests-modal__close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--travel-pine);
  font-size: 24px;
  line-height: 0;
  cursor: pointer;
}

.profile-interests-modal__close:hover,
.profile-interests-modal__close:focus-visible {
  background: rgba(2, 43, 27, 0.06);
  outline: 0;
}

.profile-interests-modal h3 {
  margin: 0;
  color: #242424;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.profile-interests-modal__compact {
  padding: 64px 26px 28px;
}

.profile-interests-modal__list-view {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.profile-interests-modal__list-view[hidden],
.profile-interests-modal__compact[hidden] {
  display: none;
}

.profile-interests-modal__compact h3 {
  padding: 0;
  font-size: 26px;
  text-align: left;
}

.profile-interests-modal__compact p {
  max-width: 490px;
  margin: 12px 0 28px;
  color: rgba(36, 36, 36, 0.68);
  font-size: 16px;
  line-height: 1.35;
}

.profile-interests-modal__list-view h3 {
  padding: 28px 64px 24px;
  text-align: center;
}

.profile-interests-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-interests-modal__chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(2, 43, 27, 0.14);
  border-radius: var(--radius-pill);
  background: var(--travel-white);
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.profile-interests-modal__chip:hover,
.profile-interests-modal__chip:focus-within {
  border-color: rgba(2, 43, 27, 0.34);
}

.profile-interests-modal__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-interests-modal__chip span,
.profile-interests-modal__option-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.profile-interests-modal__chip svg,
.profile-interests-modal__option-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-interests-modal__chip:has(input:checked) {
  border-color: var(--travel-pine);
  background: var(--travel-pine);
  color: var(--travel-surface);
}

.profile-interests-modal__show-all {
  display: inline-flex;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font: 700 14px/1 var(--font-sans);
  cursor: pointer;
}

.profile-interests-modal__show-all:hover,
.profile-interests-modal__show-all:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: 0;
}

.profile-interests-modal__search {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0 26px 18px;
  padding: 0 18px;
  border: 1px solid rgba(2, 43, 27, 0.28);
  border-radius: var(--radius-pill);
  background: var(--travel-white);
}

.profile-interests-modal__search svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-interests-modal__search input {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  color: var(--travel-pine);
  font: 500 15px/1 var(--font-sans);
  outline: 0;
  box-shadow: none;
}

.profile-settings-card .profile-interests-modal__search input {
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.profile-interests-modal__list {
  min-height: 0;
  overflow: auto;
  padding: 0 26px;
}

.profile-interests-modal__option {
  min-height: 68px;
  display: grid;
  grid-template-columns: 24px 28px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(2, 43, 27, 0.12);
  color: #242424;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.profile-interests-modal__option[hidden] {
  display: none;
}

.profile-interests-modal__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-interests-modal__check {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--travel-pine);
  border-radius: 5px;
  background-color: var(--travel-white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  box-shadow: 0 2px 8px rgba(2, 43, 27, 0.08);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.profile-interests-modal__option input:checked + .profile-interests-modal__check {
  border-color: var(--travel-pine);
  background-color: var(--travel-pine);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.4 8.1 6.6 11.2 12.8 4.8' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.profile-interests-modal__option:hover .profile-interests-modal__check,
.profile-interests-modal__option:focus-within .profile-interests-modal__check {
  box-shadow: 0 5px 14px rgba(2, 43, 27, 0.14);
}

.profile-interests-modal__option input:checked + .profile-interests-modal__check::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--travel-pine);
  border-bottom: 2px solid var(--travel-pine);
  transform: rotate(-45deg) translate(1px, -1px);
}

.profile-interests-modal__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 26px;
  border-top: 1px solid rgba(2, 43, 27, 0.12);
  background: var(--travel-white);
}

.profile-interests-modal__footer strong {
  color: #242424;
  font-size: 15px;
  font-weight: 800;
}

.profile-interests-modal__save {
  min-width: 132px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--button-context-primary-bg);
  color: var(--button-context-primary-text);
  font: 800 15px/1 var(--font-sans);
  cursor: pointer;
}

.profile-interests-modal__save:hover,
.profile-interests-modal__save:focus-visible {
  background: var(--button-context-primary-hover-bg);
  color: var(--button-context-primary-text);
  outline: 0;
}

.profile-settings-field-note {
  display: block;
  margin-top: 8px;
  color: rgba(2, 43, 27, 0.54);
  font-size: 13px;
  line-height: 1.35;
}

.profile-notification-list {
  display: grid;
  gap: 0;
  margin: 24px 0 18px;
  border-top: 1px solid rgba(2, 43, 27, 0.08);
}

.profile-notification-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(2, 43, 27, 0.08);
  cursor: pointer;
}

.profile-notification-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.profile-notification-option strong {
  display: block;
  color: var(--travel-pine);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.profile-notification-option small {
  display: block;
  margin-top: 5px;
  color: rgba(2, 43, 27, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.profile-mobile-home {
  display: none;
}

@media (max-width: 980px) {
  .profile-dashboard__shell {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    min-height: auto;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(2, 43, 27, 0.12);
  }

  .profile-sidebar__nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .profile-sidebar__item {
    flex: 0 0 auto;
  }

  .profile-dashboard__content {
    padding: 34px 24px 64px;
  }

  .profile-about-grid,
  .profile-settings-grid {
    grid-template-columns: 1fr;
  }

  .profile-about-filled {
    width: 100%;
  }

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

  .profile-settings-profile {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .profile-settings-profile__media {
    justify-items: start;
  }

  .profile-settings-profile__form > .make-button {
    align-self: flex-start;
  }

  .profile-stat-grid,
  .profile-stats-metrics,
  .profile-stats-state-grid,
  .profile-about-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-stats-table__row {
    grid-template-columns: minmax(0, 1fr) 112px 84px 84px 96px;
  }

  .profile-audience-growth {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .profile-interests-modal {
    align-items: end;
    padding: 12px;
  }

  .profile-interests-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .profile-interests-modal__list-view h3 {
    padding-top: 24px;
  }

  .profile-interests-modal__footer {
    grid-template-columns: 1fr;
  }

  .profile-interests-modal__save {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .profile-sidebar h1,
  .profile-section__heading h2 {
    font-size: 30px;
  }

  .profile-section__heading,
  .profile-section__heading--publications {
    display: grid;
    align-items: start;
  }

  .profile-publication-search {
    width: 100%;
  }

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

  .profile-stat-grid,
  .profile-stats-metrics,
  .profile-stats-state-grid,
  .profile-about-meta {
    grid-template-columns: 1fr;
  }

  .profile-about-filled {
    gap: 30px;
  }

  .profile-identity-card--filled {
    width: 100%;
  }

  .profile-about-filled__bio {
    font-size: 16px;
  }

  .profile-about-interests__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .profile-stats-period,
  .profile-stats-lifetime__heading {
    display: grid;
    justify-items: start;
  }

  .profile-stats-month-select {
    width: 100%;
  }

  .profile-stats-metric {
    text-align: left;
  }

  .profile-stats-chart__plot {
    min-height: 190px;
  }

  .profile-stats-table {
    overflow-x: auto;
  }

  .profile-stats-table__row {
    min-width: 760px;
  }

  .profile-stats-metrics--audience {
    grid-template-columns: 1fr;
  }

  .profile-stats-tooltip {
    min-width: 142px;
    padding: 14px;
  }
  }

  .make-tabs,
  .profile-publication-tabs {
    gap: 0 20px;
  }

  .make-tabs button,
  .profile-publication-tabs button {
    font-size: 14px;
  }

  .profile-publication-card {
    grid-template-columns: 1fr;
  }

  .profile-publication-card--managed {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px 0;
  }

  .profile-publication-card__image {
    width: 100%;
    max-width: 320px;
  }

  .profile-publication-card--managed .profile-publication-card__image {
    width: 100%;
    max-width: 420px;
    justify-self: stretch;
  }

  .profile-publication-card--managed h3 {
    font-size: 20px;
  }

  .profile-publication-card--saved,
  .profile-publication-card--saved.is-text-only {
    grid-template-columns: 1fr;
  }

  .profile-publication-card--saved .profile-publication-card__image {
    width: 100%;
    max-width: 360px;
    justify-self: stretch;
  }

  .profile-publication-card__actions {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  body.make-dashboard-page {
    padding-bottom: 0;
    background: var(--travel-white);
  }

  body.make-dashboard-page .make-footer {
    display: none;
  }

  body.make-dashboard-page .make-navbar__inner {
    width: min(100% - 44px, 1360px);
    min-height: 64px;
  }

  body.make-dashboard-page .make-brand__logo {
    width: 142px;
    max-height: 30px;
  }

  body.make-dashboard-page .make-search-button {
    display: inline-flex;
  }

  body.make-dashboard-page .make-navbar__tour-pill,
  body.make-dashboard-page .make-navbar__write,
  body.make-dashboard-page .make-navbar__login {
    display: none;
  }

  body.make-dashboard-page .make-navbar__actions {
    gap: 8px;
  }

  body.make-dashboard-page .make-navbar__notify {
    width: 42px;
    min-height: 42px;
  }

  body.make-dashboard-page .make-navbar__notify svg {
    width: 24px;
    height: 24px;
  }

  body.make-dashboard-page .make-navbar__avatar {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  body.make-dashboard-page .make-navbar__account-menu {
    display: none !important;
  }

  .profile-dashboard {
    min-height: auto;
  }

  .profile-dashboard__shell {
    display: block;
    width: 100%;
  }

  .profile-sidebar {
    display: none;
  }

  .profile-dashboard__content {
    padding: 28px 22px calc(44px + env(safe-area-inset-bottom));
  }

  .profile-dashboard--about .profile-dashboard__content {
    display: none;
  }

  .profile-mobile-home {
    display: block;
    padding: 28px 22px calc(44px + env(safe-area-inset-bottom));
  }

  .profile-mobile-home__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
  }

  .profile-mobile-home__top h1 {
    margin: 0;
    color: #242424;
    font-family: var(--font-sans);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .profile-mobile-home__notify {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--travel-surface);
    color: #242424;
    box-shadow: 0 10px 26px rgba(2, 43, 27, 0.08);
    cursor: pointer;
  }

  .profile-mobile-home__notify svg,
  .profile-mobile-menu__icon svg,
  .profile-mobile-menu__chevron {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .profile-mobile-home__notify svg {
    width: 21px;
    height: 21px;
  }

  .profile-mobile-identity,
  .profile-mobile-author-card {
    border: 1px solid rgba(2, 43, 27, 0.08);
    border-radius: 24px;
    background: var(--travel-surface);
    box-shadow: 0 18px 46px rgba(2, 43, 27, 0.08);
  }

  .profile-mobile-identity {
    min-height: 230px;
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 28px 22px;
    color: #242424;
    text-align: center;
    text-decoration: none;
  }

  .profile-mobile-identity__avatar {
    width: 104px;
    height: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--travel-pine);
    color: var(--travel-green);
    font-size: 46px;
    font-weight: 800;
  }

  .profile-mobile-identity h2 {
    margin: 0;
    color: #242424;
    font-family: var(--font-sans);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .profile-mobile-identity p {
    margin: 6px 0 0;
    color: rgba(36, 36, 36, 0.58);
    font-size: 14px;
  }

  .profile-mobile-author-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    padding: 20px;
    color: #242424;
    text-decoration: none;
  }

  .profile-mobile-author-card__mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 202, 132, 0.12);
    color: var(--travel-pine);
  }

  .profile-mobile-author-card__mark svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .profile-mobile-author-card strong,
  .profile-mobile-author-card small {
    display: block;
  }

  .profile-mobile-author-card strong {
    color: #242424;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
  }

  .profile-mobile-author-card small {
    margin-top: 5px;
    color: rgba(36, 36, 36, 0.62);
    font-size: 13px;
    line-height: 1.35;
  }

  .profile-mobile-menu {
    display: grid;
    gap: 0;
    margin-top: 24px;
  }

  .profile-mobile-menu a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    padding: 0;
    color: #242424;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
  }

  .profile-mobile-menu__dashboard-link.is-active {
    color: var(--travel-pine);
    font-weight: 700;
  }

  .profile-mobile-menu__dashboard-link.is-active .profile-mobile-menu__icon {
    color: var(--travel-green);
  }

  .profile-mobile-menu__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #242424;
  }

  .profile-mobile-menu__icon svg {
    width: 23px;
    height: 23px;
  }

  .profile-mobile-menu__chevron {
    width: 20px;
    height: 20px;
    color: rgba(36, 36, 36, 0.42);
  }

  .profile-section__heading,
  .profile-section__heading--publications {
    margin-bottom: 22px;
  }
}
