/*
Theme Name: NoviaVirtual
Theme URI: https://noviavirtual.io
Author: feerdev
Author URI: https://noviavirtual.io
Description: Blog theme for NoviaVirtual AI companion platform
Version: 1.0.0
Text Domain: noviavirtual
*/

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

body {
  background: #eaeaf1;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #eaeaf1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-logo .novia {
  color: #FF2A54;
}

.site-logo .virtual {
  color: #1a1a2e;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a2e;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #FF2A54;
}

.site-nav .current-menu-item a,
.site-nav a[aria-current="page"] {
  color: #FF2A54;
}

.site-nav li {
  position: relative;
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .sub-menu li {
  border: none;
}

.site-nav .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: #1a1a2e;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover {
  background: rgba(255,42,84,0.06);
  color: #FF2A54;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.countdown-bar {
  background: #1a1a2e;
  padding: 24px 0;
}

.countdown-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.countdown-bar-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.countdown-bar-timer {
  display: flex;
  align-items: center;
  gap: 2px;
}

.countdown-bar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  font-variant-numeric: tabular-nums;
  min-width: 1.4em;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #c0c0cc 50%, #8a8a9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.1));
}

.countdown-bar-sep {
  color: #FF2A54;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0 3px;
}

.countdown-bar-btn {
  background: #FF2A54;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}

.countdown-bar-btn:hover {
  background: #e0234a;
  color: #fff;
}

.menu-overlay {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 64px;
}

.posts-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.posts-column .pagination {
  grid-column: 1 / -1;
}

.posts-heading {
  grid-column: 1 / -1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 8px;
  margin-bottom: 16px;
}

.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-img img {
  transform: scale(1.05);
}
.post-card-info {
  padding: 16px 20px 20px;
}
.post-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FF2A54;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}
.post-card:hover .post-card-title {
  color: #1a1a2e;
}
.post-card-date {
  font-size: 0.78rem;
  color: #9a9ab0;
  margin-top: 6px;
}

.post-card-link--placeholder {
  background: #eaeaf1;
}

.post-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.post-card-placeholder-novia {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c0c0cc;
  line-height: 1;
}

.post-card-placeholder-virtual {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #9a9ab0;
  line-height: 1;
}

.sidebar-column {
  position: sticky;
  top: 88px;
  align-self: start;
}

.sidebar-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.sidebar-card + .sidebar-card {
  margin-top: 24px;
}

.sidebar-card-inner {
  position: relative;
  z-index: 3;
  padding: 28px 24px;
}

.sidebar-card-title,
.sidebar-card-text,
.sidebar-btn--outline {
  position: relative;
  z-index: 3;
}

.sidebar-card--hero {
  height: 380px;
  display: flex;
  align-items: flex-end;
}

.sidebar-card--hero .sidebar-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sidebar-card--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.95) 100%);
}

.sidebar-card--gradient {
  background: #1a1a2e;
}

.sidebar-card--gradient .sidebar-card-title {
  font-size: 1.4rem;
}

.sidebar-card--gradient .sidebar-card-text {
  font-size: 0.95rem;
}

.sidebar-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.sidebar-card-text {
  font-size: 0.85rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.sidebar-btn--outline {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  transition: background 0.2s ease;
}

.sidebar-btn--outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.subscribe-section {
  background: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.subscribe-section .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.subscribe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subscribe-benefit {
  backface-visibility: hidden;
}

.subscribe-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.subscribe-left h2 span {
  color: #FF2A54;
}

.subscribe-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 520px;
}

.subscribe-benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 52px;
}

.subscribe-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.subscribe-benefit svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.subscribe-benefit span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.subscribe-benefit-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.subscribe-countdown {
  text-align: center;
  margin-bottom: 24px;
}

.subscribe-countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 12px;
}

.subscribe-countdown-timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.subscribe-countdown-item {
  text-align: center;
}

.subscribe-countdown-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 1.2em;
  background: linear-gradient(180deg, #fff 0%, #c0c0cc 50%, #8a8a9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
}

.subscribe-countdown-unit {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 6px;
}

.subscribe-countdown-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  padding: 0 2px;
  align-self: flex-start;
  padding-top: 0.15em;
}

.subscribe-form-card {
  background: rgba(15,15,22,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 60px rgba(255,42,84,0.05);
}

.subscribe-form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.subscribe-form-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 32px;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.subscribe-form input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255,42,84,0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: rgba(20,20,30,0.9);
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.subscribe-form input:focus {
  border-color: #FF2A54;
  box-shadow: 0 0 0 3px rgba(255,42,84,0.15), 0 0 30px rgba(255,42,84,0.1);
}

.subscribe-form button {
  width: 100%;
  padding: 18px 32px;
  background: #FF2A54;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255,42,84,0.3);
}

.subscribe-form button:hover {
  background: #e0234a;
  box-shadow: 0 0 40px rgba(255,42,84,0.5);
}

.subscribe-success {
  text-align: center;
}

.subscribe-success h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.subscribe-success p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.subscribe-toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  z-index: 9999;
  transition: bottom 0.3s ease;
  white-space: nowrap;
}

.subscribe-toast--visible {
  bottom: 32px;
}

.subscribe-toast--error {
  background: #FF2A54;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,42,84,0.4);
}

.subscribe-toast--success {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}

.single-hero {
  position: relative;
  height: 45vh;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 32px;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-overlay {
  display: none;
}

.single-hero-title {
  color: #1a1a2e;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.single-hero--placeholder {
  background: #eaeaf1;
}

.single-hero-date {
  display: block;
  color: #9a9ab0;
  font-size: 0.88rem;
  font-weight: 400;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eaeaf1;
}

.single-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1a1a2e;
}

.single-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: #1a1a2e;
}

.single-content h3 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: #1a1a2e;
}

.single-content h4 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: #1a1a2e;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content ul,
.single-content ol {
  margin: 16px 0 24px 24px;
  list-style: revert;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content blockquote {
  border-left: 3px solid #FF2A54;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255,42,84,0.04);
  font-style: italic;
  color: #4a4a5e;
}

.single-content img {
  border-radius: 12px;
  margin: 24px 0;
}

.single-content a {
  color: #FF2A54;
}

.single-content a:hover {
  text-decoration: underline;
}

.single-content figure {
  margin: 24px 0;
}

.single-content figcaption {
  font-size: 0.85rem;
  color: #6a6a80;
  text-align: center;
  margin-top: 8px;
}

.single-content pre {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.9rem;
  margin: 24px 0;
}

.single-content code {
  background: rgba(26,26,46,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.single-content pre code {
  background: none;
  padding: 0;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.single-content th,
.single-content td {
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}

.single-content th {
  background: #f5f5f8;
  font-weight: 600;
}

.single-content hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 32px 0;
}

.single-content .wp-block-image {
  margin: 24px 0;
}

.single-content .wp-block-quote {
  border-left: 3px solid #FF2A54;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(255,42,84,0.04);
}

.single-content .wp-block-separator {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 32px 0;
}

.site-footer {
  background: #eaeaf1;
  padding: 36px 0;
  overflow: hidden;
  transition: background 0.5s ease;
}

.site-footer--filled {
  background: linear-gradient(135deg, #e95472 0%, #dd3154 40%, #af2040 80%, #a71d3c 100%);
}

.site-footer--filled .footer-logo-novia {
  color: #fff;
}

.site-footer--filled .footer-col-title {
  color: #fff;
}

.site-footer--filled .footer-socials a {
  color: rgba(255,255,255,0.8);
}

.site-footer--filled .footer-socials a:hover {
  color: #fff;
}

.site-footer--filled .footer-link {
  color: rgba(255,255,255,0.8);
}

.site-footer--filled .footer-link:hover {
  color: #fff;
}

.site-footer--filled .footer-copy {
  color: rgba(255,255,255,0.5);
}

.site-footer--filled .footer-row {
  border-bottom-color: rgba(255,255,255,0.2);
}

.site-footer--filled .footer-logo-virtual {
  color: #1a1a2e;
}

.site-footer--filled .footer-row::before {
  display: none;
}

.site-footer--heart-growing .footer-row::before {
  animation: heart-grow 0.8s ease-in forwards;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: none;
  position: relative;
}

.footer-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF2A54;
  box-shadow: 0 0 12px rgba(255,42,84,0.4), 0 0 24px rgba(255,42,84,0.2);
  transition: width 0.8s ease-out;
}

.site-footer--visible .footer-row::after {
  width: 100%;
}

.footer-row::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF2A54'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  margin-bottom: -35px;
  animation: heart-beat 1.2s ease-in-out infinite;
}

.site-footer--filled .footer-row::after {
  background: rgba(255,255,255,0.25);
  box-shadow: none;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo-novia {
  color: #FF2A54;
  animation: footer-logo-pulse 3s ease-in-out infinite;
}

.footer-logo-virtual {
  color: #1a1a2e;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #6a6a80;
  display: flex;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #FF2A54;
}

.footer-link {
  font-size: 0.88rem;
  color: #6a6a80;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #FF2A54;
}

.footer-copy {
  font-size: 0.88rem;
  color: #9a9ab0;
  text-align: center;
  padding-top: 20px;
}

.no-posts {
  text-align: center;
  padding: 64px 0;
  color: #6a6a80;
  font-size: 1rem;
}

.pagination {
  padding: 32px 0;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a5e;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination .page-numbers.current {
  background: #FF2A54;
  color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
  background: #f0f0f5;
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
  width: auto;
  padding: 0 16px;
}

.widget {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.widget-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

@media (min-width: 768px) and (max-width: 999px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar-column {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sidebar-card + .sidebar-card {
    margin-top: 0;
  }

  .posts-column {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar-card--hero {
    height: 240px;
  }

  .subscribe-left h2 {
    font-size: 2.4rem;
  }

  .subscribe-countdown-num {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .posts-column {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 1000;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav a {
    color: rgba(255,255,255,0.85);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 16px 0;
    white-space: nowrap;
  }

  .site-nav a:hover {
    color: #FF2A54;
  }

  .site-nav a[aria-current="page"] {
    color: #FF2A54;
  }

  .site-nav .sub-menu {
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 16px;
  }

  .site-nav .sub-menu.open {
    display: block;
  }

  .site-nav .sub-menu a {
    color: rgba(255,255,255,0.6);
    padding: 12px 0;
    font-size: 1rem;
  }

  .site-nav .sub-menu a:hover {
    background: none;
    color: #FF2A54;
  }

  .site-nav .menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-nav .menu-item-has-children > a::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .site-nav .menu-item-has-children.submenu-open > a::after {
    transform: rotate(45deg);
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .menu-overlay.open {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .site-header .container {
    height: 60px;
  }

  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .subscribe-left h2 {
    font-size: 1.8rem;
  }

  .subscribe-left {
    text-align: center;
    align-items: center;
  }

  .subscribe-desc {
    font-size: 0.95rem;
  }

  .subscribe-benefits {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    margin-bottom: 32px;
  }

  .subscribe-form-card {
    padding: 28px 20px;
  }

  .subscribe-form-card h3 {
    font-size: 1.1rem;
  }

  .subscribe-countdown-num {
    font-size: 1.8rem;
  }

  .subscribe-countdown-sep {
    font-size: 1.2rem;
  }

  .countdown-bar {
    padding: 16px 0;
  }

  .countdown-bar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .countdown-bar-num {
    font-size: 1.4rem;
  }

  .countdown-bar-sep {
    font-size: 1.1rem;
  }

  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .post-card-title {
    font-size: 1.15rem;
  }

  .single-hero {
    height: 35vh;
    border-radius: 12px;
    margin-top: 24px;
  }

  .single-hero-title {
    font-size: 1.6rem;
    margin-top: 16px;
  }

  .single-hero-date {
    font-size: 0.85rem;
    margin: 0 0 1.2rem;
  }

  .single-content {
    padding: 32px 0 60px;
    font-size: 1rem;
  }
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.88rem;
  color: #9a9ab0;
  margin-bottom: 48px;
}

.legal-content {
  max-width: 800px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4a5e;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 28px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 20px 24px;
  list-style: revert;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #FF2A54;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: #1a1a2e;
  font-weight: 600;
}

@keyframes heart-beat {
  0%, 100% { transform: translateX(-50%) scale(1); }
  15% { transform: translateX(-50%) scale(1.3); }
  30% { transform: translateX(-50%) scale(1); }
  45% { transform: translateX(-50%) scale(1.2); }
  60% { transform: translateX(-50%) scale(1); }
}

@keyframes heart-grow {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(15); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(40); opacity: 0; }
}

@keyframes footer-logo-pulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 16px rgba(255,42,84,0.4), 0 0 32px rgba(255,42,84,0.15); }
}
