/*
Theme Name: PinAd Fast
Theme URI: https://example.com/pinad-fast
Author: Mubashrah
Author URI: https://example.com
Description: High-end, Modern Editorial Magazine & Pinterest Theme built with slide-out drawer navigation, fluid responsiveness, and high-CPM engagement.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinad-fast
*/

/* --------------------------------------------------
   1. GLOBAL RESETS & ROOT VARIABLES
-------------------------------------------------- */
:root {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-primary: #e60023;
  --color-primary-dark: #b8001b;
  --color-accent: #f59e0b;
  --color-dark: #0f172a;
  --color-body: #334155;
  --color-muted: #64748b;
  --color-border: #f1f5f9;
  --bg-page: #fafafa;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius-card: 16px;
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-page);
  color: var(--color-body);
  font-family: var(--font-sans);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------
   2. MEDIA & IMAGE FIXES
-------------------------------------------------- */
img, picture, video {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}

figure, .wp-block-image {
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* --------------------------------------------------
   3. SIDE DRAWER & BACKDROP OVERLAY
-------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 310px;
  max-width: 85%;
  background: #ffffff;
  z-index: 99999;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.side-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px 20px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-dark);
  display: block;
}

.drawer-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);
}

.drawer-close-btn {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.drawer-close-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-menu-list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-menu-list li {
  margin: 0;
}

.drawer-menu-list a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.drawer-menu-list a:hover,
.drawer-menu-list .current-menu-item > a {
  background: #fef2f2;
  color: var(--color-primary);
  padding-left: 20px;
}

/* --------------------------------------------------
   4. STICKY HEADER & HAMBURGER
-------------------------------------------------- */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
}

.hamburger-btn .bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--color-dark);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.hamburger-btn:hover .bar {
  background-color: var(--color-primary);
}

.header-brand-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1.1;
  display: block;
}

.brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}

.header-action {
  display: flex;
  align-items: center;
}

.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-trigger:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --------------------------------------------------
   5. HOMEPAGE CATEGORY PILLS & MASONRY GRID
-------------------------------------------------- */
.category-strip {
  width: 100%;
  padding: 24px 0 12px;
}

.category-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-strip-inner::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--color-dark);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.homepage-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px 80px;
}

.pins-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.pin-feed-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
}

.pin-feed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(203, 213, 225, 0.8);
}

.pin-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pin-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.pin-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-placeholder-img {
  width: 100%;
  height: 100%;
  background: #cbd5e1;
}

.pin-feed-card:hover .pin-feed-img {
  transform: scale(1.06);
}

.pin-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
  opacity: 0.6;
}

.pin-view-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.pin-feed-card:hover .pin-view-badge {
  background: var(--color-primary);
  color: #ffffff;
}

.pin-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pin-meta-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.pin-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  flex-grow: 1;
  transition: color 0.2s ease;
}

.pin-feed-card:hover .pin-card-title {
  color: var(--color-primary);
}

.pin-date {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .pin-feed-card.is-lead-story {
    grid-column: span 2;
  }
  .pin-feed-card.is-lead-story .pin-thumb-wrapper {
    aspect-ratio: 16 / 11;
  }
  .pin-feed-card.is-lead-story .pin-card-title {
    font-size: 26px;
    line-height: 1.25;
  }
}

/* --------------------------------------------------
   6. SINGLE POST EDITORIAL LAYOUT
-------------------------------------------------- */
.article-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}

.article-header {
  text-align: center;
  margin-bottom: 30px;
}

.badge-cat a {
  display: inline-block;
  background: #fef2f2;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 14px;
}

.entry-title {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.entry-submeta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
}

.entry-submeta strong {
  color: var(--color-dark);
}

.meta-dot {
  color: #cbd5e1;
}

.magazine-content {
  font-size: 19px;
  line-height: 1.85;
  color: #334155;
}

.magazine-content p {
  margin-bottom: 24px;
}

.magazine-content h2, 
.magazine-content h3 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  margin: 40px 0 18px;
  line-height: 1.3;
}

.magazine-content h2 {
  font-size: 28px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 8px;
}

.magazine-content h3 {
  font-size: 22px;
}

.magazine-content ol, 
.magazine-content ul {
  margin: 24px 0 28px 0;
  padding-left: 32px;
}

.magazine-content li {
  margin-bottom: 14px;
  line-height: 1.75;
}

/* --------------------------------------------------
   7. IN-CONTENT FLOATING CONTROLS & BOLD RED ARROWS
-------------------------------------------------- */
.pin-hover-wrapper {
  position: relative;
  display: block;
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pin-hover-wrapper img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Pinterest Save Button: Now with Consistent Ringing SVG Icon */
.image-pin-it-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-primary);
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 1;
  z-index: 10;
  animation: consistentSaveBtnPulse 2.4s infinite ease-in-out;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Bell Ringing / Wobble Animation on the Pin SVG */
.image-pin-it-btn svg {
  display: inline-block;
  transform-origin: top center;
  animation: pinRingingBell 2.4s infinite ease-in-out;
}

.image-pin-it-btn:hover {
  background: var(--color-primary-dark);
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(230, 0, 35, 0.6);
}

.image-pin-it-btn:hover svg {
  animation-play-state: paused;
}

.img-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e60023;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(230, 0, 35, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
  z-index: 15;
  transition: background-color 0.2s ease;
  opacity: 0.95;
}

.img-slide-arrow.arrow-left {
  left: 16px;
}

.img-slide-arrow.arrow-right {
  right: 16px;
  animation: consistentRightArrowPulse 2s infinite ease-in-out;
}

.img-slide-arrow:hover {
  background: #b91c1c;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(230, 0, 35, 0.6);
}

/* --------------------------------------------------
   8. SLIDE AUTOPLAY & PAGINATION
-------------------------------------------------- */
.slide-ctrl-wrapper.top-controls {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.auto-next-card {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.08);
}

.auto-next-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 14px;
  color: #7c2d12;
}

.auto-next-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.auto-pulse-dot {
  width: 9px;
  height: 9px;
  background: #ea580c;
  border-radius: 50%;
  animation: pulseDot 1.2s infinite ease-in-out;
}

.auto-pulse-dot.is-idle {
  background: #94a3b8;
  animation: none;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.auto-toggle-btn {
  background: #ea580c;
  border: none;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.auto-toggle-btn:hover {
  background: #c2410c;
}

.auto-toggle-btn.is-active {
  background: #ffffff;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.auto-progress-track {
  width: 100%;
  height: 4px;
  background: #ffedd5;
}

.auto-progress-bar {
  width: 0%;
  height: 100%;
  background: #ea580c;
}

.listicle-slide-action-box {
  display: flex;
  gap: 12px;
  margin: 20px 0 35px;
}

.compact-top-nav {
  margin: 12px 0 0 0 !important;
}

.compact-top-nav .slide-nav-btn {
  padding: 11px 18px !important;
  font-size: 14px !important;
}

.slide-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 40px;
  text-decoration: none !important;
  flex: 1;
  text-align: center;
  transition: all 0.25s ease;
}

.slide-prev-btn {
  background: #ffffff;
  color: var(--color-dark) !important;
  border: 2px solid #e2e8f0;
}

.slide-prev-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Next Idea Button: Consistent Gentle Pulse */
.slide-next-btn {
  background: var(--color-dark);
  color: #ffffff !important;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  animation: consistentNextBtnPulse 2.2s infinite ease-in-out;
}

.slide-next-btn:hover {
  background: var(--color-primary);
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(230, 0, 35, 0.35);
}

.listicle-pagination-wrap {
  text-align: center;
  margin: 30px 0 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
}

.listicle-page-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.listicle-nav-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.listicle-nav-pills a,
.listicle-nav-pills > .slide-num {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid #e2e8f0;
  color: var(--color-dark);
  background: #ffffff;
  transition: all 0.2s ease;
}

.listicle-nav-pills a:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.listicle-nav-pills > .slide-num:not(a) {
  background: var(--color-dark);
  color: #ffffff;
  border-color: var(--color-dark);
}

/* --------------------------------------------------
   9. EDITORIAL IN-CONTENT SUGGESTION CARD
-------------------------------------------------- */
.editorial-suggest-card {
  margin: 40px 0;
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-left: 6px solid var(--color-primary);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.editorial-suggest-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #fda4af;
}

.suggest-inner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-decoration: none !important;
  color: inherit;
  gap: 16px;
}

.suggest-badge-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.suggest-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.suggest-headline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.editorial-suggest-card:hover .suggest-headline {
  color: var(--color-primary);
}

.suggest-cta-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted);
}

.suggest-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef2f2;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.editorial-suggest-card:hover .suggest-arrow-circle {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(4px);
}

/* --------------------------------------------------
   10. RINGING & PULSING ANIMATIONS
-------------------------------------------------- */

/* Ringing Bell Wobble on Pin Icon */
@keyframes pinRingingBell {
  0% { transform: rotate(0deg); }
  5% { transform: rotate(20deg); }
  10% { transform: rotate(-18deg); }
  15% { transform: rotate(14deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(6deg); }
  30% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); } /* Rest period before ringing again */
}

/* One-time Left Arrow Slide */
@keyframes arrowSlideInLeft {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-25px) scale(0.7);
  }
  70% {
    opacity: 1;
    transform: translateY(-50%) translateX(4px) scale(1.1);
  }
  100% {
    opacity: 0.95;
    transform: translateY(-50%) translateX(0) scale(1);
  }
}

/* Consistent Infinite Pulse for Save Button */
@keyframes consistentSaveBtnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(230, 0, 35, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
  }
}

/* Consistent Infinite Pulse for Right Arrow */
@keyframes consistentRightArrowPulse {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 6px 20px rgba(230, 0, 35, 0.45);
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 28px rgba(230, 0, 35, 0.7);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 6px 20px rgba(230, 0, 35, 0.45);
  }
}

/* Consistent Infinite Pulse for Next Idea Action Button */
@keyframes consistentNextBtnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 12px 28px rgba(230, 0, 35, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
  }
}

.pin-hover-wrapper.in-view-animated .img-slide-arrow.arrow-left {
  animation: arrowSlideInLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------
   11. LUXURY FOOTER WITH ACCENT QUICK LINKS
-------------------------------------------------- */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 70px 24px 30px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.6fr;
  gap: 45px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-heading-styled {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.heading-accent-line {
  width: 48px;
  height: 3px;
  background-color: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.styled-footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.styled-footer-links li {
  margin-bottom: 12px;
}

.styled-footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.styled-footer-links .link-arrow {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease;
}

.styled-footer-links a:hover {
  color: var(--color-accent);
}

.styled-footer-links a:hover .link-arrow {
  transform: translateX(4px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.newsletter-input {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  background: #141c2e;
  border: 1px solid #243048;
  border-radius: 8px 0 0 8px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.newsletter-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 0 8px 8px 0;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--color-primary-dark);
}

.footer-bottom {
  max-width: 1240px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* --------------------------------------------------
   12. HOMEPAGE PAGINATION
-------------------------------------------------- */
.home-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.home-pagination .nav-links {
  display: flex;
  gap: 8px;
}

.home-pagination a, 
.home-pagination span {
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  transition: all 0.2s ease;
}

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

/* --------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
-------------------------------------------------- */
@media (max-width: 1024px) {
  .pins-masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pins-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .img-slide-arrow {
    width: 46px;
    height: 46px;
    opacity: 1;
  }
  .img-slide-arrow svg {
    width: 22px;
    height: 22px;
  }
  .img-slide-arrow.arrow-left {
    left: 10px;
  }
  .img-slide-arrow.arrow-right {
    right: 10px;
  }
  .image-pin-it-btn {
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    font-size: 11px;
  }
  .entry-title {
    font-size: 28px;
  }
  .magazine-content {
    font-size: 17px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .homepage-wrapper,
  .article-wrapper {
    padding-left: 14px;
    padding-right: 14px;
  }
  .pin-card-content {
    padding: 12px;
  }
  .pin-card-title {
    font-size: 15px;
  }
  .listicle-slide-action-box {
    flex-direction: column;
    gap: 10px;
  }
  .slide-nav-btn {
    width: 100%;
  }
}
/* --------------------------------------------------
   HOMEPAGE REDESIGN — editorial palette + sections
   Keeps article/archive styling and functionality intact.
-------------------------------------------------- */
.homepage-wrapper {
  max-width: 1320px;
  padding-top: 4px;
  --home-ink: #26352f;
  --home-sage: #738b78;
  --home-sage-soft: #e9eee8;
  --home-cream: #f7f2e9;
  --home-peach: #f0d8c8;
  --home-blush: #ead8d5;
  --home-line: #ded8ce;
}

.homepage-category-strip { padding: 18px 0 8px; }
.homepage-category-strip .cat-pill { border-color: var(--home-line); background: #fffdf9; }
.homepage-category-strip .cat-pill.active,
.homepage-category-strip .cat-pill:hover { background: var(--home-ink); border-color: var(--home-ink); }

.home-hero-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: center;
  padding: 54px 0 62px;
}
.home-hero-copy { padding: 20px 10px 20px 22px; }
.home-eyebrow, .section-kicker {
  display: inline-block;
  color: var(--home-sage);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.home-hero-copy h1 {
  color: var(--home-ink);
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -2.4px;
  margin-bottom: 22px;
}
.home-hero-copy h1 em { color: var(--home-sage); font-weight: 700; }
.home-hero-copy p { max-width: 440px; color: #65716b; font-size: 16px; line-height: 1.75; margin-bottom: 25px; }
.home-hero-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--home-ink); font-size: 13px; font-weight: 900;
  text-decoration: none; border-bottom: 1px solid var(--home-ink); padding-bottom: 5px;
}
.home-hero-link span { font-size: 19px; transition: transform .2s ease; }
.home-hero-link:hover span { transform: translateX(4px); }
.home-hero-card { background: #fff; border: 1px solid var(--home-line); box-shadow: 0 18px 45px rgba(38,53,47,.10); }
.home-hero-card > a { display:block; color:inherit; text-decoration:none; }
.home-hero-image { position:relative; aspect-ratio: 16/10; overflow:hidden; background:var(--home-cream); }
.home-feature-img { width:100%; height:100%!important; object-fit:cover; transition:transform .7s cubic-bezier(.16,1,.3,1); }
.home-hero-card:hover .home-feature-img { transform:scale(1.035); }
.home-hero-label { position:absolute; top:18px; left:18px; background:rgba(255,253,249,.94); color:var(--home-ink); padding:8px 13px; font-size:10px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.home-hero-card-content { position:relative; padding:23px 26px 25px; }
.home-hero-card-content .pin-meta-tag { color:var(--home-sage); }
.home-hero-card-content h2 { max-width:760px; color:var(--home-ink); font-family:var(--font-serif); font-size:clamp(25px,3vw,39px); line-height:1.12; padding-right:45px; }
.home-arrow { position:absolute; right:24px; bottom:23px; width:42px; height:42px; border:1px solid var(--home-line); display:flex; align-items:center; justify-content:center; border-radius:50%; color:var(--home-ink); font-size:18px; transition:all .2s ease; }
.home-hero-card:hover .home-arrow { background:var(--home-ink); color:#fff; }

.home-mini-section, .home-feed-section { padding: 14px 0 62px; }
.section-heading-row { display:flex; align-items:center; gap:24px; margin-bottom:24px; }
.section-heading-row > div { flex:0 0 auto; }
.section-heading-row h2 { color:var(--home-ink); font-family:var(--font-serif); font-size:31px; line-height:1.05; }
.section-rule { height:1px; background:var(--home-line); flex:1; }
.home-mini-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.home-mini-card { background:#fffdf9; border:1px solid var(--home-line); transition:transform .25s ease, box-shadow .25s ease; }
.home-mini-card:hover { transform:translateY(-5px); box-shadow:0 14px 30px rgba(38,53,47,.09); }
.home-mini-card > a { display:grid; grid-template-columns:40% 60%; height:100%; color:inherit; text-decoration:none; }
.home-mini-image { min-height:190px; overflow:hidden; background:var(--home-peach); }
.home-mini-image img { width:100%; height:100%!important; object-fit:cover; transition:transform .55s ease; }
.home-mini-card:hover .home-mini-image img { transform:scale(1.06); }
.home-mini-content { padding:20px; display:flex; flex-direction:column; }
.home-mini-content .pin-meta-tag { color:var(--home-sage); }
.home-mini-content h3 { color:var(--home-ink); font-family:var(--font-serif); font-size:20px; line-height:1.25; margin-bottom:16px; }
.home-read-link { margin-top:auto; color:#78817c; font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.8px; }

.home-redesigned-grid { margin-top:0; grid-template-columns:repeat(4,1fr); gap:20px; }
.home-redesigned-grid .pin-feed-card { border-radius:0; box-shadow:none; border:1px solid var(--home-line); background:#fffdf9; }
.home-redesigned-grid .pin-feed-card:hover { transform:translateY(-5px); box-shadow:0 14px 30px rgba(38,53,47,.09); }
.home-redesigned-grid .pin-thumb-wrapper { aspect-ratio:3/4; }
.home-redesigned-grid .pin-card-content { padding:16px 17px 18px; }
.home-redesigned-grid .pin-meta-tag { color:var(--home-sage); }
.home-redesigned-grid .pin-card-title { color:var(--home-ink); font-size:18px; }
.home-redesigned-grid .pin-feed-card:hover .pin-card-title { color:var(--home-sage); }
.home-redesigned-grid .pin-view-badge { border-radius:0; bottom:12px; left:12px; }

.home-cta-band {
  display:grid; grid-template-columns:auto 1fr .9fr; gap:25px; align-items:center;
  margin: 0 0 70px; padding:38px 44px; background:var(--home-cream); border:1px solid #e6ded1;
}
.home-cta-mark { width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--home-sage); color:#fff; font-size:22px; }
.home-cta-band h2 { color:var(--home-ink); font-family:var(--font-serif); font-size:34px; line-height:1.05; }
.home-cta-band h2 em { color:var(--home-sage); }
.home-cta-band p { color:#6b746e; font-size:14px; line-height:1.7; max-width:390px; }

@media (max-width: 900px) {
  .home-hero-section { grid-template-columns:1fr; gap:25px; padding:36px 0 48px; }
  .home-hero-copy { padding:10px 4px; }
  .home-hero-copy h1 { font-size:clamp(42px,9vw,62px); }
  .home-mini-grid { grid-template-columns:1fr; }
  .home-mini-card > a { grid-template-columns:32% 68%; }
  .home-redesigned-grid { grid-template-columns:repeat(2,1fr); }
  .home-cta-band { grid-template-columns:auto 1fr; }
  .home-cta-band p { grid-column:2; }
}

@media (max-width: 600px) {
  .homepage-wrapper { padding-left:15px; padding-right:15px; padding-bottom:45px; }
  .homepage-category-strip { margin-left:-15px; margin-right:-15px; }
  .category-strip-inner { padding:0 15px; }
  .home-hero-section { padding:27px 0 38px; }
  .home-hero-copy h1 { font-size:43px; letter-spacing:-1.6px; }
  .home-hero-copy p { font-size:14px; }
  .home-hero-image { aspect-ratio:4/3; }
  .home-hero-card-content { padding:18px; }
  .home-hero-card-content h2 { font-size:26px; }
  .section-heading-row { gap:12px; margin-bottom:17px; }
  .section-heading-row h2 { font-size:25px; }
  .section-kicker { margin-bottom:9px; font-size:9px; letter-spacing:1.4px; }
  .home-mini-card > a { grid-template-columns:38% 62%; }
  .home-mini-image { min-height:150px; }
  .home-mini-content { padding:14px; }
  .home-mini-content h3 { font-size:17px; }
  .home-redesigned-grid { gap:12px; }
  .home-redesigned-grid .pin-card-content { padding:13px; }
  .home-redesigned-grid .pin-card-title { font-size:16px; }
  .home-redesigned-grid .pin-date { font-size:10px; }
  .home-redesigned-grid .pin-view-badge { display:none; }
  .home-cta-band { grid-template-columns:1fr; gap:16px; margin-bottom:35px; padding:27px 22px; }
  .home-cta-band p { grid-column:auto; }
  .home-cta-band h2 { font-size:29px; }
}


/* --------------------------------------------------
   SINGLE POST — 200-WORD READ MORE GATE
-------------------------------------------------- */
.pinad-read-more-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 30px 0 42px;
  margin-top: 12px;
}
.pinad-read-more-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ded8ce;
}
.pinad-read-more-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #26352f;
  background: #f7f2e9;
  color: #26352f;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}
.pinad-read-more-btn:hover {
  background: #26352f;
  color: #fff;
  transform: translateY(-2px);
}
.pinad-read-more-arrow {
  font-size: 17px;
  line-height: 1;
  transition: transform .2s ease;
}
.pinad-read-more-btn:hover .pinad-read-more-arrow {
  transform: translateY(2px);
}
.pinad-read-more-wrap.is-complete {
  padding-bottom: 22px;
}
.pinad-read-more-wrap.is-complete::before {
  display: none;
}
.pinad-visible-image-section {
  margin: 8px 0 28px;
}
.pinad-visible-image-section > *:first-child {
  margin-top: 0;
}
.pinad-visible-image-section img {
  max-width: 100%;
  height: auto;
}
.pinad-hidden-content {
  animation: pinadReveal .45s ease both;
}

@keyframes pinadReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .pinad-read-more-wrap {
    padding: 24px 0 32px;
  }
  .pinad-read-more-btn {
    width: calc(100% - 28px);
    justify-content: center;
    min-height: 50px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* --------------------------------------------------
   TRENDING MAGAZINE STORY — POST IMAGE ACCENTS
   -------------------------------------------------- */
.pinad-trending-story-card {
  margin: 24px 0 30px;
  border: 1px solid #f0b7bd;
  border-left: 5px solid #e9002b;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.pinad-trending-story-link {
  min-height: 178px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 28px 27px 34px;
  color: inherit;
  text-decoration: none;
}
.pinad-trending-story-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pinad-trending-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #e9002b;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pinad-trending-story-star {
  color: #26352f;
  font-size: 17px;
  line-height: 1;
}
.pinad-trending-story-title {
  max-width: 720px;
  color: #172038;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.45;
  font-weight: 700;
}
.pinad-trending-story-cta {
  margin-top: 14px;
  color: #6f809d;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}
.pinad-trending-story-cta span {
  margin-left: 3px;
}
.pinad-trending-story-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1f3;
  color: #e9002b;
  font-size: 18px;
  transition: transform .2s ease, background .2s ease;
}
.pinad-trending-story-link:hover .pinad-trending-story-arrow {
  transform: translateX(4px);
  background: #ffe4e8;
}
.pinad-visible-image-section .pinad-trending-story-card {
  margin-top: 0;
}
@media (max-width: 600px) {
  .pinad-trending-story-card {
    margin: 20px 0 24px;
    border-radius: 12px;
  }
  .pinad-trending-story-link {
    min-height: 0;
    gap: 16px;
    padding: 22px 18px 22px 22px;
  }
  .pinad-trending-story-kicker {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: .8px;
  }
  .pinad-trending-story-title {
    font-size: 20px;
    line-height: 1.35;
  }
  .pinad-trending-story-cta {
    margin-top: 11px;
    font-size: 12px;
  }
  .pinad-trending-story-arrow {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ==================================================
   NEW HOMEPAGE DESIGN — HOMEPAGE ONLY
   Existing post/archive/theme styles remain untouched.
================================================== */
.new-home-hero,
.new-discovery-section,
.new-feature-section,
.new-latest-section,
.new-save-band { max-width:1240px; margin-left:auto; margin-right:auto; }

.new-home-hero { display:grid; grid-template-columns:minmax(0,1.7fr) minmax(300px,.9fr); gap:24px; padding:34px 0 76px; }
.new-home-hero-main { min-width:0; background:#fff; border:1px solid #e7e1d8; box-shadow:0 16px 45px rgba(26,34,45,.07); }
.new-hero-image-link,.new-side-image,.new-feature-image { display:block; text-decoration:none; }
.new-hero-image { position:relative; aspect-ratio:16/10; overflow:hidden; background:#ece8de; }
.new-hero-img { width:100%; height:100%!important; object-fit:cover; transition:transform .7s cubic-bezier(.16,1,.3,1); }
.new-home-hero-main:hover .new-hero-img { transform:scale(1.035); }
.new-hero-badge { position:absolute; left:20px; top:20px; padding:9px 12px; background:#fffaf0; color:#18202d; font-size:10px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase; }
.new-hero-corner { position:absolute; right:18px; bottom:18px; width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:#e60023; color:#fff; font-size:20px; box-shadow:0 8px 18px rgba(230,0,35,.25); }
.new-hero-copy { padding:27px 30px 31px; }
.new-kicker,.new-section-label { display:block; font-size:10px; line-height:1.3; letter-spacing:1.5px; text-transform:uppercase; font-weight:800; color:#7b6958; }
.new-kicker i { font-style:normal; padding:0 5px; color:#d2a46b; }
.new-hero-copy h1 { margin:10px 0 12px; max-width:850px; font:700 clamp(34px,4vw,56px)/1.04 var(--font-serif); letter-spacing:-1.5px; color:#17202d; }
.new-hero-copy h1 a,.new-side-copy h2 a,.new-feature-copy h3 a { color:inherit; text-decoration:none; }
.new-hero-copy p { max-width:680px; margin-bottom:19px; color:#647080; font-size:14px; line-height:1.8; }
.new-text-link { display:inline-flex; align-items:center; gap:9px; color:#17202d; text-decoration:none; font-size:11px; font-weight:800; letter-spacing:.7px; text-transform:uppercase; border-bottom:1px solid #17202d; padding-bottom:5px; }
.new-text-link span { font-size:18px; line-height:10px; transition:transform .2s ease; }
.new-text-link:hover span { transform:translateX(4px); }
.new-home-hero-side { display:grid; grid-template-rows:1fr 1fr; gap:24px; }
.new-side-story { display:grid; grid-template-columns:43% 57%; background:#f5f0e8; border:1px solid #e5ddd1; min-height:0; }
.new-side-image { position:relative; overflow:hidden; background:#ddd; }
.new-side-image img { width:100%; height:100%!important; object-fit:cover; transition:transform .5s ease; }
.new-side-story:hover .new-side-image img { transform:scale(1.06); }
.new-side-image > span { position:absolute; left:12px; bottom:12px; background:#17202d; color:#fff; padding:6px 8px; font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.7px; }
.new-side-copy { padding:20px 17px; display:flex; flex-direction:column; justify-content:center; }
.new-side-copy h2 { margin-top:9px; color:#17202d; font:700 clamp(18px,2vw,25px)/1.18 var(--font-serif); }

.new-discovery-section { padding:0 0 78px; }
.new-section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:24px; }
.new-section-head h2 { margin-top:7px; color:#17202d; font:700 clamp(28px,3vw,40px)/1.05 var(--font-serif); letter-spacing:-.8px; }
.new-section-head p,.new-head-note { margin:0; max-width:360px; color:#77808d; font-size:12px; line-height:1.7; }
.new-mood-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.new-mood-card { position:relative; min-height:178px; padding:20px; display:flex; flex-direction:column; justify-content:flex-end; text-decoration:none; overflow:hidden; border:1px solid rgba(23,32,45,.08); transition:transform .25s ease, box-shadow .25s ease; }
.new-mood-card:hover { transform:translateY(-5px); box-shadow:0 15px 30px rgba(23,32,45,.1); }
.new-mood-card strong { color:#17202d; font:700 27px/1 var(--font-serif); }
.new-mood-card small { margin-top:7px; color:#647080; font-size:10px; font-weight:700; letter-spacing:.4px; }
.new-mood-card i { position:absolute; right:17px; top:16px; font-style:normal; font-size:19px; color:#17202d; }
.mood-number { position:absolute; left:19px; top:17px; font-size:10px; font-weight:800; letter-spacing:1px; color:#7d8791; }
.mood-cream { background:#f4eee2; }.mood-sage { background:#dce7dc; }.mood-rose { background:#f1dddd; }.mood-ink { background:#17202d; }.mood-ink strong,.mood-ink i { color:#fff; }.mood-ink small,.mood-ink .mood-number { color:#c7ced7; }

.new-feature-section { padding:0 0 78px; }
.new-section-head.compact { align-items:center; }
.new-outline-link { padding:9px 13px; border:1px solid #d9d3ca; color:#17202d; text-decoration:none; font-size:10px; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.new-feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.new-feature-card { background:#fff; border:1px solid #e6e1d9; }
.new-feature-image { position:relative; aspect-ratio:1.42/1; overflow:hidden; background:#ece8de; }
.new-feature-image img { width:100%; height:100%!important; object-fit:cover; transition:transform .6s ease; }
.new-feature-card:hover .new-feature-image img { transform:scale(1.04); }
.new-save-label { position:absolute; left:15px; bottom:15px; background:#fff; color:#17202d; padding:8px 10px; font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.9px; }
.new-feature-copy { padding:19px 21px 22px; }
.new-feature-copy h3 { margin:7px 0 15px; color:#17202d; font:700 25px/1.18 var(--font-serif); }

.new-latest-section { padding:0 0 72px; }
.new-latest-grid { grid-template-columns:repeat(4,1fr); gap:16px; margin-top:0; }
.new-pin-card { border:1px solid #e5e0d8; border-radius:0; background:#fff; box-shadow:none; }
.new-pin-card:hover { transform:translateY(-4px); box-shadow:0 14px 28px rgba(23,32,45,.09); }
.new-pin-card .pin-thumb-wrapper { aspect-ratio:3/4; }
.new-pin-card .pin-card-content { padding:15px 16px 17px; }
.new-pin-card .pin-meta-tag { color:#7b6958; }
.new-pin-card .pin-card-title { color:#17202d; font-family:var(--font-serif); font-size:18px; line-height:1.2; }
.new-pin-card:hover .pin-card-title { color:#e60023; }

.new-save-band { display:grid; grid-template-columns:auto 1fr minmax(250px,390px); gap:20px; align-items:center; margin-bottom:72px; padding:29px 32px; background:#17202d; color:#fff; }
.new-save-icon { width:49px; height:49px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:#e60023; color:#fff; font:800 21px/1 Arial,sans-serif; }
.new-save-copy .new-section-label { color:#d8c4ad; }.new-save-copy h2 { margin-top:6px; font:700 32px/1.05 var(--font-serif); }.new-save-copy h2 em { color:#f0b6a8; font-style:italic; }
.new-save-band p { margin:0; color:#cbd2da; font-size:12px; line-height:1.7; }

@media (max-width:900px) {
  .new-home-hero { grid-template-columns:1fr; padding-bottom:58px; }
  .new-home-hero-side { grid-template-columns:1fr 1fr; grid-template-rows:none; }
  .new-side-story { grid-template-columns:1fr; }
  .new-side-image { aspect-ratio:1.4/1; }
  .new-side-copy { min-height:145px; }
  .new-mood-grid { grid-template-columns:repeat(2,1fr); }
  .new-latest-grid { grid-template-columns:repeat(2,1fr); }
  .new-save-band { grid-template-columns:auto 1fr; }
  .new-save-band p { grid-column:2; }
}
@media (max-width:600px) {
  .new-home-hero { padding:22px 0 48px; gap:14px; }
  .new-hero-image { aspect-ratio:1.08/1; }
  .new-hero-badge { left:12px; top:12px; font-size:8px; padding:7px 9px; }
  .new-hero-corner { right:12px; bottom:12px; width:40px; height:40px; font-size:17px; }
  .new-hero-copy { padding:21px 17px 24px; }
  .new-hero-copy h1 { font-size:34px; letter-spacing:-1px; }
  .new-hero-copy p { font-size:13px; }
  .new-home-hero-side { grid-template-columns:1fr 1fr; gap:10px; }
  .new-side-image { aspect-ratio:1/1.05; }
  .new-side-image > span { display:none; }
  .new-side-copy { padding:12px 11px 14px; min-height:120px; }
  .new-side-copy h2 { font-size:17px; }
  .new-kicker { font-size:8px; letter-spacing:1px; }
  .new-discovery-section,.new-feature-section,.new-latest-section { padding-bottom:52px; }
  .new-section-head { align-items:flex-start; flex-direction:column; gap:9px; margin-bottom:18px; }
  .new-section-head h2 { font-size:29px; }
  .new-section-head p { font-size:11px; }
  .new-mood-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .new-mood-card { min-height:135px; padding:14px; }
  .new-mood-card strong { font-size:22px; }
  .new-mood-card small { font-size:9px; }
  .new-feature-grid { grid-template-columns:1fr; gap:14px; }
  .new-feature-copy h3 { font-size:22px; }
  .new-latest-grid { gap:10px; }
  .new-pin-card .pin-card-content { padding:11px; }
  .new-pin-card .pin-card-title { font-size:15px; }
  .new-pin-card .pin-date { font-size:9px; }
  .new-save-band { grid-template-columns:auto 1fr; margin-bottom:42px; padding:22px 17px; gap:13px; }
  .new-save-icon { width:42px; height:42px; font-size:18px; }
  .new-save-copy h2 { font-size:25px; }
  .new-save-band p { grid-column:1 / -1; font-size:11px; }
}
