:root {
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
  --terracotta: #D4BBDD;
  /* Fallback for older var usage, mapping to lavender */
  --soft-lavender: #D4BBDD;
  --dusty-blue: #A8B5C7;
  --deep-blue: #4A5A6D;
  --soft-pink: #E8C4C4;
  --sage: #A8B5C7;
  --deep-green: #4A5A6D;
  --charcoal: #2C2C2C;
  --soft-brown: #E8C4C4;
  --text-primary: #3A3A3A;
  --text-secondary: #6B6B6B;
  --border-color: #E8DFD3;
}

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

html {
  font-size: 100%;
}

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(1.875rem);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(1.875rem);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-1.25rem) rotate(10deg);
  }
}

/* Header */
header {
  background: var(--warm-white);
  border-bottom: 0.0625rem solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

.header-content {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 1.5rem 5%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.0625rem;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 0.125rem;
  background: var(--soft-lavender);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03125rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background: var(--soft-lavender);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--soft-lavender);
}

nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--dusty-blue) 0%, var(--soft-lavender) 50%, var(--soft-pink) 100%);
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.hero::after {
  content: '♥';
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1875rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero p {
  font-size: 1.1rem;
  color: var(--warm-white);
  opacity: 0.95;
  font-weight: 300;
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--warm-white);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.0625rem;
}

/* Filter Section */
.container {
  width: 100%;
  max-width: 87.5rem;
  margin: 5rem auto;
  padding: 0 5%;
}

.filter-section {
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.filter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.filter-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.7rem 1.5rem;
  background: var(--warm-white);
  border: 0.0625rem solid var(--border-color);
  border-radius: 3.125rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--soft-lavender);
  color: white;
  border-color: var(--soft-lavender);
  transform: translateY(-0.125rem);
}

/* Pinterest Styling */
.pinterest-preview {
  background: var(--warm-white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}

.pinterest-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-align: center;
}

.pinterest-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--soft-lavender);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.pinterest-scroll-btn.left {
  left: -0.625rem;
}

.pinterest-scroll-btn.right {
  right: -0.625rem;
}

.pinterest-scroll-btn:hover {
  background: var(--deep-blue);
  transform: translateY(-50%) scale(1.1);
}

.pinterest-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.5rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.5rem;
  background: var(--cream);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.pinterest-scroll-container::-webkit-scrollbar {
  height: 0.5rem;
}

.pinterest-scroll-container::-webkit-scrollbar-track {
  background: var(--cream);
  border-radius: 0.625rem;
}

.pinterest-scroll-container::-webkit-scrollbar-thumb {
  background: var(--soft-lavender);
  border-radius: 0.625rem;
}

.pinterest-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--deep-blue);
}

.pinterest-pins {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pinterest-pins iframe {
  width: 100%;
  max-width: 21.5625rem;
  /* 345px */
  height: 43.75rem;
  /* 700px allowing full pin visibility */
  flex-shrink: 0;
  border: none;
  display: block;
  border-radius: 1rem;
}

.pinterest-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
}

.pinterest-embed {
  width: 100%;
  min-height: 37.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
}

.pinterest-embed iframe {
  width: 100%;
  height: 37.5rem;
  border: none;
}

/* Global Blog List */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  width: 100%;
}

.post-card {
  background: var(--warm-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.12);
}

.post-image-wrapper,
.post-image {
  width: 100%;
  height: 13.75rem;
  position: relative;
  overflow: hidden;
}

.post-image {
  object-fit: cover;
  transition: transform 0.4s ease;
  height: 100%;
  display: block;
}

.post-card:hover .post-image {
  transform: scale(1.05);
}

.post-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(0.625rem);
  padding: 0.4rem 1rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--soft-lavender);
  z-index: 2;
}

.post-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--soft-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.post-card:hover .post-title {
  color: var(--soft-lavender);
}

.post-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.post-footer,
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.post-date,
.post-read-time {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.post-read-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-read-time::before {
  content: '●';
  color: var(--soft-lavender);
}

/* Featured Post */
.featured-post {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 3rem;
}

.featured-post .post-image-wrapper {
  height: 100%;
  min-height: 18.75rem;
}

.featured-post .post-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background: var(--soft-lavender);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.featured-post .post-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.featured-post .post-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Read More */
.read-more-btn {
  display: inline-block;
  background: var(--soft-lavender);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 3.125rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03125rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.read-more-btn:hover {
  background: var(--deep-blue);
  transform: translateX(0.3125rem);
}

/* Sidebar */
.sidebar {
  animation: fadeIn 0.8s ease-out 0.4s both;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--warm-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.9375rem rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.875rem;
  height: 0.125rem;
  background: var(--soft-lavender);
}

.category-list {
  list-style: none;
}

.category-list li {
  padding: 0.6rem 0;
  border-bottom: 0.0625rem solid var(--border-color);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--soft-lavender);
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.recent-post {
  padding: 0.8rem 0;
  border-bottom: 0.0625rem solid var(--border-color);
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.recent-post-title:hover {
  color: var(--soft-lavender);
}

.recent-post-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* About / Newsletter */
.about-section {
  width: 100%;
  max-width: 75rem;
  margin: 4rem auto;
  padding: 0 5%;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.about-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 43.75rem;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  width: 100%;
  max-width: 21.875rem;
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

.about-text {
  width: 100%;
}

.about-quote {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-contact {
  text-align: center;
}

.about-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.about-contact p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--warm-white);
  border-radius: 3.125rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.12);
}

.newsletter {
  background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--dusty-blue) 100%);
  padding: 3rem 1.5rem;
  border-radius: 1.25rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '♥';
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  animation: float 8s ease-in-out infinite;
}

.newsletter::after {
  content: '♥';
  position: absolute;
  bottom: 15%;
  right: 12%;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  animation: float 7s ease-in-out infinite reverse;
}

.newsletter-content {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 3.125rem;
  font-size: 1rem;
  font-family: 'Karla', sans-serif;
}

.newsletter-btn {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--soft-lavender);
  border: none;
  border-radius: 3.125rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Karla', sans-serif;
}

.newsletter-btn:hover {
  background: var(--deep-blue);
  color: white;
  transform: translateY(-0.125rem);
}

/* Articles (e.g. 7-hemligheter) */
.article-header {
  width: 100%;
  max-width: 56.25rem;
  margin: 3rem auto 2rem;
  padding: 0 5%;
  animation: fadeIn 0.8s ease-out;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--soft-lavender);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--deep-blue);
}

.breadcrumb span {
  color: var(--border-color);
}

.category-badge {
  display: inline-block;
  background: var(--soft-lavender);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Override category badge for hero if used there */
.hero .category-badge {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.625rem);
  animation: slideUp 0.8s ease-out 0.1s both;
  color: var(--warm-white);
  border: none;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 0.0625rem solid var(--border-color);
  animation: slideUp 0.8s ease-out 0.4s both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.featured-image {
  width: 100%;
  max-width: 56.25rem;
  margin: 3rem auto;
  padding: 0 5%;
  animation: fadeIn 1s ease-out 0.6s both;
}

.featured-image-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.12);
}

.article-content {
  width: 100%;
  max-width: 46.875rem;
  margin: 0 auto;
  padding: 3rem 5%;
  animation: fadeIn 1s ease-out 0.8s both;
  font-size: 1.1rem;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-left: 1rem;
  border-left: 0.25rem solid var(--soft-lavender);
}

.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 3rem 0 1.5rem 0;
  position: relative;
}

.article-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 2rem 0 1rem 0;
}

.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.article-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

.tip-box {
  background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--dusty-blue) 100%);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 2.5rem 0;
  color: white;
}

.tip-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tip-box h4::before {
  content: '♥';
  font-size: 1.8rem;
}

.tip-box p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 0;
}

.secret-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  background: var(--soft-lavender);
  color: white;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 1rem;
  float: left;
  margin-top: 0.2rem;
}

/* Related Posts */
.related-posts {
  width: 100%;
  max-width: 75rem;
  margin: 4rem auto;
  padding: 0 5%;
}

.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.related-card {
  background: var(--warm-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.12);
}

.related-image {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
}

.related-content {
  padding: 1.5rem;
}

.related-category {
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
  text-transform: uppercase;
  color: var(--soft-lavender);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--deep-blue);
  color: var(--warm-white);
  padding: 3rem 5% 2rem;
  margin-top: 6rem;
}

.footer-content {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--warm-white);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Media Queries */
@media (min-width: 48em) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }

  .logo {
    font-size: 2.2rem;
  }

  .logo::after {
    left: 0;
    transform: none;
  }

  nav ul {
    gap: 2.5rem;
  }

  .hero {
    padding: 8rem 5% 6rem;
  }

  .hero h1 {
    font-size: 5rem;
    letter-spacing: 0.125rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 3rem;
  }

  .pinterest-preview {
    padding: 2rem;
  }

  .pinterest-scroll-btn {
    display: flex;
  }

  .newsletter {
    padding: 5rem 3rem;
  }

  .newsletter h2 {
    font-size: 3rem;
  }

  .newsletter p {
    font-size: 1.1rem;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .featured-post .post-content {
    padding: 3rem;
  }

  .featured-post .post-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .featured-post .post-excerpt {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .about-header h2 {
    font-size: 3rem;
  }

  .about-text {
    padding: 0 2rem;
  }

  .social-link {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .article-title {
    font-size: 3.5rem;
  }

  .article-content h2::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: var(--soft-lavender);
    border-radius: 50%;
  }

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

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 64em) {
  .container {
    padding: 0 2rem;
  }

  /* Layout when sidebar exists */
  .layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 21.875rem;
    gap: 4rem;
    width: 100%;
  }

  .pinterest-preview {
    grid-column: 1 / -1;
  }

  .pinterest-pins iframe {
    width: 21.5rem !important;
    height: 26rem !important;
  }

  .pinterest-scroll-container {
    padding: 1rem 3rem;
  }

  .pinterest-scroll-btn {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.5rem;
  }

  .pinterest-scroll-btn.left {
    left: 0;
  }

  .pinterest-scroll-btn.right {
    right: 0;
  }

  .featured-post {
    grid-template-columns: 1fr 1fr;
  }

  .featured-post .post-image-wrapper {
    min-height: 25rem;
  }

  .sidebar {
    gap: 2rem;
  }

  .about-section {
    padding: 0 2rem;
  }

  .about-header h2 {
    font-size: 3.5rem;
  }

  .about-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .about-text {
    padding: 0;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--warm-white);
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 50rem;
  opacity: 0.9;
}

.cookie-link {
  color: var(--soft-lavender);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--warm-white);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* CRITCAL LEK COMPLIANCE: Button styles must be completely identical representing no nudging */
.cookie-btn {
  background: transparent;
  color: var(--warm-white);
  border: 0.0625rem solid var(--warm-white);
  padding: 0.8rem 2rem;
  border-radius: 3.125rem;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 11.25rem;
}

.cookie-btn:hover {
  background: var(--soft-lavender);
  border-color: var(--soft-lavender);
  color: var(--charcoal);
}

@media (min-width: 64em) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
  }

  .cookie-text {
    margin-bottom: 0;
  }
}