/*
Theme Name: Reset Party
Theme URI: https://resaegame.com/
Author: 말랑리세
Description: SEO-friendly WordPress theme for Korean reroll account listings, guides, and marketplace pages.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: reset-party
*/

:root {
  --rp-red: #ff4b4f;
  --rp-red-dark: #e23b40;
  --rp-ink: #2e2e2e;
  --rp-muted: #7d7d7d;
  --rp-line: #e8e8e8;
  --rp-soft: #f7f8fa;
  --rp-bg: #ffffff;
  --rp-yellow: #ffb020;
  --rp-green: #16a36f;
  --rp-blue: #3278ff;
  --rp-peach: #ff9a8b;
  --rp-max: 1600px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--rp-bg);
  color: var(--rp-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--rp-line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--rp-max), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-title {
  color: var(--rp-peach);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.site-title:hover {
  color: #ff7f72;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #777;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
}

.icon-button svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #555;
}

.main-nav a:hover {
  color: var(--rp-red);
}

.site-search {
  display: none;
  border-top: 1px solid var(--rp-line);
  background: #fff;
}

.site-search.is-open {
  display: block;
}

.site-search form {
  width: min(var(--rp-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  gap: 10px;
}

.search-field {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--rp-line);
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
}

.search-submit,
.button,
.wp-block-button__link {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: var(--rp-red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-main {
  width: min(var(--rp-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 90px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  margin: -18px 0 54px;
  padding: 52px 58px;
  border: 1px solid #ffdfe1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 75, 79, 0.13), transparent 16%),
    radial-gradient(circle at 80% 88%, rgba(255, 176, 32, 0.12), transparent 18%),
    radial-gradient(circle at 100% 0%, rgba(255, 75, 79, 0.13), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(255, 176, 32, 0.12), transparent 24%),
    linear-gradient(135deg, #fff7f8 0%, #fff 52%, #fff3f4 100%);
  box-shadow: 0 16px 46px rgba(255, 75, 79, 0.08);
  overflow: hidden;
}

.eyebrow,
.section-label {
  color: var(--rp-red);
  font-size: 18px;
  font-weight: 900;
}

.home-hero h1,
.archive-title,
.entry-title {
  margin: 10px 0 12px;
  color: #1f1f1f;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.home-hero h1 span {
  color: var(--rp-peach);
}

.hero-pill {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffd4d7;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--rp-red);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(255, 75, 79, 0.08);
}

.home-hero p,
.archive-description,
.entry-excerpt {
  margin: 0;
  color: #666;
  font-size: 17px;
}

.not-found-page {
  max-width: 860px;
  margin: 0 auto;
}

.not-found-page .search-form {
  margin: 28px 0 24px;
}

.hero-copy {
  max-width: 980px;
}

.hero-metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid #ffe0e2;
}

.hero-metrics div {
  min-width: 120px;
  border-right: 1px solid #ffe0e2;
  padding-right: 22px;
}

.hero-metrics div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #1f1f1f;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
}

.hero-metrics span {
  margin-top: 5px;
  color: #777;
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 140, 156, 0.22), transparent 42%),
    radial-gradient(circle at 62% 20%, rgba(255, 255, 255, 0.58), transparent 34%);
}

.hero-profile-image {
  width: min(500px, 100%);
  max-height: 390px;
  object-fit: contain;
  transform: translateY(-64px);
  filter: drop-shadow(0 18px 28px rgba(255, 75, 79, 0.16));
}

.hero-bubble {
  position: absolute;
  z-index: 2;
  border: 1px solid #ffe0e2;
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(255, 75, 79, 0.1);
}

.hero-bubble strong,
.hero-bubble span {
  display: block;
}

.hero-bubble strong {
  color: #333;
  font-size: 13px;
  font-weight: 950;
}

.hero-bubble span {
  color: var(--rp-red);
  font-size: 12px;
  font-weight: 800;
}

.hero-bubble-response {
  left: 0;
  top: 34%;
}

.hero-feature-stack {
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.hero-feature-stack div {
  min-width: 210px;
  border: 1px solid #ffe0e2;
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(255, 75, 79, 0.1);
}

.hero-feature-stack strong,
.hero-feature-stack span {
  display: block;
}

.hero-feature-stack strong {
  color: #222;
  font-size: 15px;
  font-weight: 950;
}

.hero-feature-stack span {
  margin-top: 4px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
}

.hero-chat {
  position: absolute;
  right: 0;
  z-index: 2;
  border: 1px solid #ffe0e2;
  border-radius: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 75, 79, 0.1);
}

.hero-chat-top {
  top: 42px;
}

.hero-chat-bottom {
  top: 132px;
  background: rgba(255, 239, 241, 0.96);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 64px;
  border-radius: 8px;
  padding: 0 28px;
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(255, 75, 79, 0.22);
}

.hero-support-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #ffe0e2;
  border-radius: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(255, 75, 79, 0.08);
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.hero-support-bar strong {
  color: #222;
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.hero-support-bar span {
  white-space: nowrap;
}

.hero-support-bar i {
  width: 1px;
  height: 34px;
  background: #ffdfe1;
}

.support-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff1f2;
  color: var(--rp-red);
  font-size: 22px;
}

.support-icon.blue {
  background: #eef4ff;
  color: #3278ff;
}

.hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rp-line);
  border-radius: 999px;
  padding: 6px 12px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 900;
}

.hero-panel {
  border: 1px solid var(--rp-line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  min-height: 78px;
  border-radius: 7px;
  padding: 14px;
  background: var(--rp-soft);
}

.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.stat span {
  color: var(--rp-muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-bar {
  margin: 28px 0 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--rp-line);
  border-radius: 999px;
  padding: 7px 14px;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--rp-red);
  background: #fff5f5;
  color: var(--rp-red);
}

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

.section-head h2 {
  margin: 0;
  font-size: 20px;
  color: var(--rp-red);
}

.section-head a {
  color: #777;
  font-size: 14px;
  font-weight: 800;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  gap: 20px;
  justify-content: start;
}

.empty-preview {
  margin: 18px 0 0;
  color: var(--rp-muted);
  font-size: 15px;
}

.listing-card {
  width: 300px;
  max-width: 100%;
  min-width: 0;
}

.card-thumb {
  position: relative;
  display: block;
  width: 300px;
  max-width: 100%;
  height: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f2f3f5, #e8ebef);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.listing-card:hover .card-thumb img {
  transform: scale(1.035);
}

.fallback-thumb {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(135deg, #ff6468, #3278ff 52%, #16a36f);
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  max-width: calc(100% - 20px);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 75, 79, 0.95);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.card-title {
  margin: 14px 0 7px;
  width: 300px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.52;
  word-break: keep-all;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a:hover {
  color: var(--rp-red);
}

.card-meta {
  width: 300px;
  max-width: 100%;
  color: #888;
  font-size: 15px;
}

.card-price {
  width: 300px;
  max-width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 900;
}

.stock {
  color: var(--rp-green);
  font-size: 12px;
  font-weight: 900;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.entry-header {
  margin-bottom: 24px;
}

.single .entry-title {
  color: var(--rp-red);
  font-size: clamp(30px, 3.55vw, 48px);
  font-weight: 900;
}

.entry-meta {
  color: var(--rp-muted);
  font-size: 14px;
  font-weight: 700;
}

.entry-content {
  color: #333;
  font-size: 17px;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 36px;
  line-height: 1.25;
}

.entry-content p {
  margin: 0 0 18px;
}

.entry-content a {
  color: #0073e6;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preview-editor a {
  color: #0073e6;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content .mallang-contact-button,
.preview-editor .mallang-contact-button {
  min-width: 210px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 28px;
  background: var(--rp-red);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(255, 75, 79, 0.22);
}

.entry-content .mallang-contact-button:hover,
.preview-editor .mallang-contact-button:hover {
  color: #fff;
  background: var(--rp-red-dark);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2em;
}

.product-panel,
.sidebar-box {
  border: 1px solid var(--rp-line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.single-sidebar {
  display: grid;
  gap: 34px;
}

.sidebar-section-title {
  margin: 0 0 14px;
  color: var(--rp-red);
  font-size: 20px;
  font-weight: 950;
}

.sidebar-list {
  display: grid;
  gap: 18px;
}

.sidebar-post {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.sidebar-thumb {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: var(--rp-soft);
}

.sidebar-thumb img,
.sidebar-thumb .fallback-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 13px;
}

.rank-badge {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--rp-red);
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  z-index: 1;
}

.sidebar-post-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.sidebar-post-title a:hover {
  color: var(--rp-red);
}

.sidebar-post-meta {
  color: #888;
  font-size: 13px;
}

.product-price {
  margin: 4px 0 14px;
  font-size: 28px;
  font-weight: 950;
  color: #111;
}

.spec-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rp-line);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rp-line);
  font-size: 14px;
}

.spec-list span {
  color: var(--rp-muted);
}

.spec-list strong {
  text-align: right;
}

.cta-stack {
  display: grid;
  gap: 10px;
}

.button.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-line);
  background: #fff;
  color: var(--rp-ink);
}

.site-footer {
  border-top: 1px solid var(--rp-line);
  background: #fff7f8;
  color: #555;
}

.footer-inner {
  position: relative;
  width: min(var(--rp-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  grid-template-areas:
    "brand hours"
    "copy contact";
  gap: 44px;
  font-size: 13px;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand strong {
  color: #1f1f1f;
  font-size: 24px;
  font-weight: 950;
}

.footer-brand p {
  margin: 10px 0 18px;
}

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

.footer-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 0 12px;
  background: #fff;
  color: #555;
  font-weight: 900;
}

.footer-button.kakao {
  background: #ffdf35;
  color: #201a00;
}

.footer-links {
  grid-area: hours;
  justify-self: end;
  min-width: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.footer-links h2 {
  margin: 0 0 10px;
  color: #222;
  font-size: 14px;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 7px;
  color: #555;
}

.footer-links a:hover {
  color: var(--rp-red);
}

.footer-mascot {
  position: relative;
  width: 126px;
  height: 126px;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 58%, #ff8b93 0 5px, transparent 6px),
    radial-gradient(circle at 34% 58%, #ff8b93 0 5px, transparent 6px),
    linear-gradient(145deg, #ffd9dc, #ff9fa7);
}

.footer-mascot .mascot-leaf {
  position: absolute;
  left: 46px;
  top: -16px;
  width: 34px;
  height: 24px;
  border-radius: 100% 0 100% 0;
  background: #9fe179;
  border: 2px solid #4ba95a;
  transform: rotate(28deg);
}

.footer-mascot .mascot-face::before,
.footer-mascot .mascot-face::after {
  content: "";
  position: absolute;
  top: 55px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #392b2c;
}

.footer-mascot .mascot-face::before {
  left: 42px;
}

.footer-mascot .mascot-face::after {
  right: 42px;
}

.floating-contact {
  grid-area: contact;
  justify-self: end;
  align-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--rp-red);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(255, 75, 79, 0.22);
}

.footer-copy {
  grid-area: copy;
  align-self: end;
  margin: 4px 0 0;
  color: #999;
}

.kakao-floating-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fee500;
  color: #191600;
  font-size: 28px;
  box-shadow: 0 14px 32px rgba(25, 22, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.kakao-floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(25, 22, 0, 0.24);
}

.pagination {
  margin-top: 52px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rp-line);
  border-radius: 6px;
  color: #555;
  font-weight: 800;
}

.pagination .current {
  border-color: var(--rp-red);
  background: var(--rp-red);
  color: #fff;
}

@media (max-width: 980px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-bubble-response {
    left: 0;
    top: 28px;
  }

  .hero-feature-stack {
    left: 0;
    bottom: 0;
  }

  .hero-chat {
    right: 0;
  }

  .hero-chat-bottom {
    top: 112px;
  }

  .post-grid {
    grid-template-columns: repeat(auto-fill, 300px);
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 14px;
    border-bottom: 1px solid var(--rp-line);
    background: #fff;
  }

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

  .main-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--rp-line);
  }
}

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 28px, var(--rp-max));
    min-height: 72px;
  }

  .site-title {
    font-size: 25px;
  }

  .site-main {
    width: min(100% - 28px, var(--rp-max));
    padding-top: 44px;
  }

  .home-hero {
    margin-top: 0;
    padding: 28px 20px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-metrics div {
    border-right: 0;
    padding-right: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

  .listing-card {
    width: 100%;
  }

  .card-thumb {
    width: 100%;
    height: auto;
  }

  .card-title {
    width: 100%;
  }

  .card-meta,
  .card-price {
    width: 100%;
  }

  .card-title {
    font-size: 14px;
    font-weight: 500;
  }

  .card-meta,
  .card-price {
    font-size: 13px;
  }

  .home-hero h1,
  .archive-title,
  .entry-title {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "hours"
      "contact"
      "copy";
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-self: start;
  }

  .footer-mascot {
    display: none;
  }

  .floating-contact {
    justify-self: start;
  }
}
