@font-face {
  font-family: "WILDgag";
  src: url("images/WILDgag-Bold.ttf") format("truetype"),
       url("./images/WILDgag-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PuzzleSansSuper";
  src: url("images/PuzzleSansSuper.ttf") format("truetype"),
       url("./images/PuzzleSansSuper.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SungdongMyungjoLocal";
  src: url("images/SungdongMyungjo-B.ttf") format("truetype"),
       url("./images/SungdongMyungjo-B.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SungdongMyungjoLocal";
  src: url("images/SungdongMyungjo-B.ttf") format("truetype"),
       url("./images/SungdongMyungjo-B.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #ffffff;
  --paper-deep: #f7f7f7;
  --ink: #302c22;
  --muted: #766f61;
  --olive: #5b5f32;
  --olive-dark: #3f4324;
  --line: rgba(80, 72, 54, 0.18);
  --card: rgba(255, 255, 255, 0.94);
  --shadow: 0 18px 40px rgba(78, 67, 44, 0.12);
  --serif: "SungdongMyungjoLocal", "성동명조", "성동명조체", "Seongdong Myeongjo", "SeongdongMyungjo", "Batang", "AppleMyungjo", serif;
  --sans: "SungdongMyungjoLocal", "성동명조", "성동명조체", "Seongdong Myeongjo", "SeongdongMyungjo", "Batang", "AppleMyungjo", serif;
  --hand: "SungdongMyungjoLocal", "성동명조", "성동명조체", "Seongdong Myeongjo", "SeongdongMyungjo", "Batang", serif;
  --wild: "WILDgag", "Batang", "Malgun Gothic", serif;
  --hero-text: "Batang", "Malgun Gothic", "Apple SD Gothic Neo", serif;
  --puzzle: "PuzzleSansSuper", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  --heading-weight: 800;
  --content-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: url("./images/nat926.cur"), auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.66;
  word-break: keep-all;
  cursor: url("./images/nat926.cur"), auto;
}

body :where(main, .section, .category-grid, .category-card, .post-card, .youtube-card, .mood-band, .article-view, .pagination) {
  font-family: var(--serif) !important;
}

.hero,
.hero *,
.site-footer,
.site-footer * {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: url("./images/nat927.cur"), pointer;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

button,
[role="button"],
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.category-card,
.youtube-card a,
.post-card a,
.food-thumb-wall a,
.mood-track a,
.social-links a {
  cursor: url("./images/nat927.cur"), pointer;
}

html.is-loading,
body.is-loading,
[aria-busy="true"],
.is-loading,
.loading {
  cursor: url("./images/nat927.cur"), progress;
}

html.custom-cursor-ready,
html.custom-cursor-ready * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483647;
  width: 32px;
  height: 32px;
  pointer-events: none;
  opacity: 1;
  transform: translate3d(-80px, -80px, 0);
  transition: opacity 120ms ease;
  will-change: transform;
  display: block !important;
}

.custom-cursor.is-hidden {
  opacity: 0;
}

.custom-cursor img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 252, 246, 0.2);
  background: transparent;
  backdrop-filter: none;
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

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

.brand-mark {
  width: 58px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--olive);
  line-height: 1;
}

.brand-mark .lucide {
  width: 46px;
  height: 46px;
}

.brand-title {
  display: block;
  font-family: var(--hand);
  font-size: 25px;
  line-height: 0.95;
  color: var(--olive-dark);
}

.brand-subtitle {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(55, 57, 34, 0.16);
  cursor: pointer;
}

.nav-toggle .lucide {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: visible;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 252, 246, 0.96);
  text-shadow: 0 2px 12px rgba(31, 32, 20, 0.35);
}

.site-nav-item {
  position: relative;
  z-index: 2;
}

.site-nav-link,
.site-nav > a {
  position: relative;
  display: block;
  padding: 10px 4px;
}

.site-nav-item + .site-nav-item::before,
.site-nav > a + a::before {
  content: "/";
  position: absolute;
  top: 10px;
  left: -13px;
  color: rgba(255, 252, 246, 0.58);
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: #ffffff;
}

.site-subnav {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  min-width: 148px;
  padding: 10px;
  border: 1px solid rgba(255, 252, 246, 0.26);
  border-radius: 8px;
  background: rgba(34, 35, 22, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(31, 32, 20, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-subnav a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 252, 246, 0.94);
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.has-children:hover .site-subnav,
.has-children:focus-within .site-subnav,
.has-children.is-subopen .site-subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.tistory-category-source {
  display: none;
}

.hero {
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  background: url("./images/hero-camp-sea.jpg?v=20260701-bg-refresh") center 64% / cover no-repeat;
  cursor: pointer;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(540px, 100%);
  padding: 64px 0;
}

.hero h1 {
  margin: 0 0 22px;
  color: #fffaf0;
  font-family: var(--wild);
  font-size: clamp(36px, 4.25vw, 49px);
  font-weight: 700;
  line-height: 1.13;
  white-space: normal;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

.hero p {
  margin: 0 0 26px;
  color: rgba(255, 250, 240, 0.94);
  font-family: var(--hero-text);
  font-size: 13px;
  line-height: 1.72;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: #fffaf0;
  background: var(--olive);
  box-shadow: 0 12px 22px rgba(91, 95, 50, 0.2);
  font-family: var(--sans);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--olive-dark);
  box-shadow: 0 16px 28px rgba(91, 95, 50, 0.25);
}

.section {
  width: min(var(--content-width), calc(100% - 144px));
  margin: 0 auto;
  padding: 52px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: var(--heading-weight);
  line-height: 1.25;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(91, 95, 50, 0.72);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 10px 0;
  border: 1px solid rgba(80, 72, 54, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.category-card {
  position: relative;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease;
}

.category-card + .category-card::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  border-left: 2px dotted rgba(123, 111, 79, 0.22);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-3px);
  color: var(--olive);
}

.category-card img {
  object-fit: contain;
}

.category-illustration {
  width: min(58px, 100%);
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.category-illustration img {
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
}

.category-card strong {
  display: block;
  margin-bottom: 0;
  color: #332c22;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: var(--heading-weight);
  line-height: 1.2;
}

.category-card small {
  display: none;
  color: #4f473a;
  font-family: var(--sans);
  font-size: 10.5px;
  line-height: 1.42;
}

.section-head-row {
  position: relative;
}

.section-head-row .section-title {
  margin-bottom: 24px;
}

.section-link {
  position: absolute;
  top: 5px;
  right: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--olive);
}

.youtube-section {
  padding-top: 18px;
}

.youtube-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
}

.youtube-viewport {
  overflow: hidden;
}

.youtube-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  transition: transform 260ms ease;
  will-change: transform;
}

.youtube-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--card);
  box-shadow: 0 6px 16px rgba(78, 67, 44, 0.07);
}

.youtube-card a {
  position: relative;
  display: block;
  height: 100%;
}

.youtube-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.youtube-play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(63, 67, 36, 0.86);
  box-shadow: 0 8px 18px rgba(31, 32, 20, 0.24);
}

.youtube-play .lucide {
  width: 17px;
  height: 17px;
}

.inline-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.css-icon {
  --icon-size: 20px;
  --icon-url: none;
  display: inline-block;
  flex: 0 0 auto;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.icon-menu {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-arrow-right {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-chevron-left {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 18l-6-6 6-6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-chevron-right {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 18l6-6-6-6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-play {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 5l11 7-11 7z' fill='black'/%3E%3C/svg%3E");
}

.icon-play-circle {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 8.7l5.4 3.3-5.4 3.3z' fill='black'/%3E%3C/svg%3E");
}

.icon-camera {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.5 7.5L10 5.7h4l1.5 1.8H19a2 2 0 012 2v7.2a2 2 0 01-2 2H5a2 2 0 01-2-2V9.5a2 2 0 012-2h3.5z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='13' r='3.4' fill='none' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
}

.icon-rss {
  --icon-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5.5c7.5 0 13.5 6 13.5 13.5M5 11c4.4 0 8 3.6 8 8' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='6.3' cy='17.7' r='1.5' fill='black'/%3E%3C/svg%3E");
}

.youtube-play .inline-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.youtube-play .css-icon {
  --icon-size: 17px;
}

.carousel-button .inline-icon,
.pagination .inline-icon,
.nav-toggle .inline-icon,
.carousel-button .css-icon,
.pagination .css-icon,
.nav-toggle .css-icon {
  width: 20px;
  height: 20px;
}

.youtube-card-body {
  min-height: 98px;
  padding: 12px 14px 14px;
}

.youtube-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: var(--heading-weight);
  line-height: 1.42;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.youtube-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.carousel-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 6px 14px rgba(78, 67, 44, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  background: #fffdf8;
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.recent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr);
  gap: 24px;
}

.post-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--card);
  box-shadow: 0 6px 16px rgba(78, 67, 44, 0.06);
}

.post-card a {
  display: block;
  min-width: 0;
  height: 100%;
}

.post-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f8f7f3;
}

.post-card img:not([src]),
.post-card img[src=""] {
  display: none;
}

.post-card.no-thumbnail img,
.post-card img[hidden] {
  display: none;
}

.post-card.no-thumbnail .post-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card.featured img {
  aspect-ratio: 1.55 / 1;
}

.post-body {
  padding: 16px 18px 20px;
}

.post-card h3 {
  margin: 0 0 8px;
  max-width: 100%;
  font-size: 16px;
  font-weight: var(--heading-weight);
  line-height: 1.52;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: keep-all;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-meta {
  display: block;
  margin-top: 4px;
  color: #786d5d;
  font-family: var(--sans);
  font-size: 12px;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 3px 10px;
  border-radius: 6px;
  color: #fffaf0;
  background: rgba(91, 95, 50, 0.92);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: var(--heading-weight);
}

.post-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  color: var(--olive);
  font-size: 22px;
}

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

.post-list .post-body {
  padding: 13px 15px 16px;
}

.post-list h3 {
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-list p {
  display: none;
}

.recent-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.recent-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1;
}

.recent-more-link:hover,
.recent-more-link:focus-visible {
  color: var(--olive);
}

.recent-more-link .lucide {
  width: 13px;
  height: 13px;
}

.dynamic-posts {
  display: grid;
  width: min(100%, 980px);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.dynamic-posts .post-card:first-child img {
  aspect-ratio: 16 / 9;
}

.food-wall-section {
  padding-top: 18px;
}

.food-thumb-wall {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: 64px;
  gap: 3px;
  overflow: hidden;
  border-radius: 7px;
  background: #ffffff;
}

.food-thumb-wall:empty,
.food-thumb-wall[hidden] {
  display: none;
}

.food-thumb-wall a {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(91, 95, 50, 0.08);
}

.food-thumb-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.food-thumb-wall a:hover img,
.food-thumb-wall a:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.04);
}

.mood-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.mood-inner {
  width: min(var(--content-width), calc(100% - 144px));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 42px;
  align-items: center;
}

.mood-copy h2 {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: var(--heading-weight);
  line-height: 1.65;
}

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

.mood-images {
  overflow: hidden;
  position: relative;
}

.mood-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 3);
  gap: 10px;
  transition: transform 520ms ease;
  will-change: transform;
}

.mood-track a,
.mood-track img {
  display: block;
  width: 100%;
}

.mood-track a {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
}

.mood-track img {
  height: 100%;
  object-fit: cover;
}

.mood-roller:hover .mood-track {
  transition-duration: 700ms;
}

.instagram-feed-embed {
  display: block;
}

.instagram-feed-embed iframe {
  width: 100%;
  min-height: 190px;
  border: 0;
  border-radius: 4px;
}

.subscribe {
  width: min(var(--content-width), calc(100% - 144px));
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  justify-items: center;
}

.site-footer {
  min-height: 330px;
  color: #fffaf0;
  font-family: var(--puzzle);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.86) 9%, rgba(255, 255, 255, 0.34) 22%, rgba(16, 22, 28, 0.08) 39%, rgba(3, 6, 10, 0.58) 100%),
    url("./images/footer-night-camp.jpg?v=20260701-bg-refresh") center 64% / cover no-repeat;
  border-top: 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.footer-message h2 {
  margin: 0 0 18px;
  color: #fff3d4;
  font-family: var(--puzzle);
  font-size: clamp(22px, 2.75vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.6);
}

.footer-message p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 14px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.social-links {
  display: flex;
  gap: 13px;
}

.subscribe-social {
  justify-content: center;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 95, 50, 0.35);
  border-radius: 50%;
  color: var(--olive);
  background: rgba(255, 252, 246, 0.64);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(91, 95, 50, 0.6);
  background: rgba(255, 255, 255, 0.9);
}

.social-links .lucide,
.social-links .social-icon,
.social-links .css-icon {
  --icon-size: 19px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 0;
}

.footer-bottom-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 252, 246, 0.82);
  font-family: var(--puzzle);
  font-size: 12px;
}

.article-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.article-view {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: var(--shadow);
}

.article-head {
  padding: 44px 46px 28px;
  border-bottom: 1px solid var(--line);
}

.article-head h1 {
  margin: 8px 0 10px;
  font-size: clamp(27px, 4.6vw, 40px);
  font-weight: var(--heading-weight);
  line-height: 1.35;
}

.article-category {
  color: var(--olive);
  font-family: var(--sans);
  font-size: 14px;
}

.article-content {
  padding: 42px 46px 52px;
  font-size: 16px;
}

.article-content img {
  max-width: 100%;
  border-radius: 7px;
}

.pagination {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 72px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
}

.pagination a,
.pagination span {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.72);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) and (min-width: 761px) {
  .header-inner {
    gap: 18px;
  }

  .brand {
    min-width: 190px;
  }

  .brand-mark {
    width: 48px;
  }

  .brand-mark .lucide {
    width: 38px;
    height: 38px;
  }

  .brand-title {
    font-size: 22px;
  }

  .site-nav {
    gap: 13px;
    font-size: 12px;
  }

  .site-nav-item + .site-nav-item::before,
  .site-nav > a + a::before {
    left: -9px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 28px, 1120px);
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    color: var(--ink);
    text-shadow: none;
    background: rgba(251, 247, 239, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-link,
  .site-nav > a {
    padding: 13px 12px;
  }

  .site-nav-link:hover,
  .site-nav-link:focus-visible,
  .site-nav > a:hover,
  .site-nav > a:focus-visible {
    color: var(--olive);
  }

  .site-nav-item + .site-nav-item::before,
  .site-nav > a + a::before {
    display: none;
  }

  .site-subnav {
    position: static;
    min-width: 0;
    margin: -2px 0 6px;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    transition: none;
  }

  .site-subnav a {
    padding: 8px 12px;
    color: var(--muted);
  }

  .site-subnav a:hover,
  .site-subnav a:focus-visible {
    color: var(--olive);
    background: rgba(91, 95, 50, 0.08);
  }

  .has-children:hover .site-subnav,
  .has-children:focus-within .site-subnav {
    display: none;
  }

  .has-children.is-subopen .site-subnav {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero {
    background: url("./images/hero-camp-sea.jpg?v=20260701-bg-refresh") 50% 62% / cover no-repeat;
  }

  .hero-inner,
  .section,
  .mood-inner,
  .subscribe,
  .footer-inner,
  .footer-bottom-inner,
  .pagination {
    width: min(100% - 28px, 1120px);
  }

  .section,
  .mood-inner,
  .subscribe {
    width: min(100% - 44px, var(--content-width));
  }

  .hero-copy {
    align-self: flex-start;
    padding-top: 74px;
  }

  .hero p {
    font-size: 12.5px;
  }

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

  .category-card {
    min-height: 100px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .category-card:nth-child(3n + 1)::before {
    display: none;
  }

  .recent-layout,
  .mood-inner,
  .subscribe,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .post-list,
  .dynamic-posts {
    grid-template-columns: 1fr;
  }

  .section-link {
    position: static;
    display: block;
    margin: -14px 0 20px;
    text-align: center;
  }

  .youtube-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .youtube-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .dynamic-posts .post-card:first-child {
    grid-column: auto;
  }

  .food-thumb-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 62px;
  }

  .subscribe-social {
    justify-content: center;
  }

  .footer-inner {
    padding: 60px 0 34px;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 38px;
  }

  .brand-title {
    font-size: 21px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .hero,
  .hero-inner {
    min-height: 455px;
  }

  .hero {
    background-position: 50% 82%;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
    white-space: normal;
  }

  .hero p {
    font-size: 12px;
    line-height: 1.62;
  }

  .section {
    padding: 34px 0;
  }

  .section-title {
    gap: 14px;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(320px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .category-card {
    min-height: 84px;
    padding: 0 6px;
  }

  .category-card::before {
    display: none;
  }

  .category-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .category-illustration {
    width: 48px;
    height: 42px;
    margin-bottom: 5px;
  }

  .category-card strong {
    margin-bottom: 0;
    font-size: 13px;
  }

  .category-card small {
    font-size: 9.5px;
    line-height: 1.38;
  }

  .youtube-carousel {
    display: block;
  }

  .youtube-viewport {
    overflow: visible;
  }

  .youtube-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    gap: 14px;
    transform: none !important;
  }

  .youtube-card:nth-child(n + 3) {
    display: none;
  }

  .youtube-card-body {
    min-height: 82px;
    padding: 12px 13px 14px;
  }

  .youtube-card h3 {
    font-size: 15px;
  }

  .carousel-button {
    display: none;
  }

  .post-body,
  .post-list .post-body {
    padding: 16px;
  }

  .mood-track {
    grid-auto-columns: 100%;
  }

  .mood-inner {
    width: min(90%, var(--content-width));
    padding: 36px 0;
    gap: 24px;
  }

  .mood-copy h2 {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 1.58;
  }

  .mood-copy p {
    font-size: 12.5px;
  }

  .food-thumb-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 72px;
    gap: 4px;
  }

  .food-thumb-wall a:nth-child(n + 19) {
    display: none;
  }

  .footer-bottom-inner {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
  }

  .article-head,
  .article-content {
    padding-right: 22px;
    padding-left: 22px;
  }
}

html,
body {
  cursor: url("./images/nat926.cur"), auto;
}

a,
button:not(:disabled),
[role="button"],
summary,
label,
select,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.nav-toggle,
.site-nav-link,
.site-subnav a,
.category-card,
.youtube-card a,
.carousel-button:not(:disabled),
.post-card a,
.food-thumb-wall a,
.mood-track a,
.social-links a {
  cursor: url("./images/nat927.cur"), pointer;
}

button:disabled,
.carousel-button:disabled {
  cursor: url("./images/nat926.cur"), default;
}

html.is-loading,
body.is-loading,
[aria-busy="true"],
.is-loading,
.loading {
  cursor: url("./images/nat927.cur"), progress;
}
