@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-milk: #FAF7F2;
  --bg-cream: #F5F0E8;
  --text-graphite: #2D2D2D;
  --text-muted: #6B6B6B;
  --accent-green: #1B4332;
  --accent-green-light: #2D6A4F;
  --accent-green-pale: #D8F3DC;
  --white: #FFFFFF;
  --border-light: #E8E2D9;
  --shadow-soft: 0 4px 24px rgba(27, 67, 50, 0.08);
  --shadow-hover: 0 8px 40px rgba(27, 67, 50, 0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-milk);
  color: var(--text-graphite);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.site-header {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: -0.5px;
}

.header-domain {
  font-size: 0.85rem;
  color: var(--accent-green);
  background: var(--accent-green-pale);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.featured-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.featured-hero {
  margin-bottom: 24px;
}

.featured-hero-link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  min-height: 380px;
}

.featured-hero-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.featured-hero-img {
  position: relative;
  overflow: hidden;
}

.featured-hero-img img {
  border-radius: 0;
  transition: transform 0.6s ease;
}

.featured-hero-link:hover .featured-hero-img img {
  transform: scale(1.04);
}

.featured-hero-content {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.featured-hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-green);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  display: inline-block;
}

.featured-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-graphite);
}

.featured-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.duo-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.duo-card-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.duo-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.duo-card-img img {
  border-radius: 0;
  transition: transform 0.5s ease;
}

.duo-card-link:hover .duo-card-img img {
  transform: scale(1.05);
}

.duo-card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.duo-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.duo-card-meta {
  margin-top: auto;
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.duo-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  z-index: 2;
}

.badge-culture {
  background: linear-gradient(135deg, #7B2D8B, #A855F7);
}

.badge-insolite {
  background: linear-gradient(135deg, #D97706, #F59E0B);
}

.badge-societe {
  background: linear-gradient(135deg, #DC2626, #F87171);
}

.badge-cuisine {
  background: linear-gradient(135deg, #059669, #34D399);
}

.badge-sante {
  background: linear-gradient(135deg, #2563EB, #60A5FA);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.divider-symbol {
  color: var(--accent-green);
  font-size: 0.9rem;
  opacity: 0.6;
}

.feed-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 32px;
}

.feed-header {
  margin-bottom: 32px;
}

.feed-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.feed-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
}

.feed-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feed-wide-link {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feed-wide-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feed-wide-img {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.feed-wide-img img {
  border-radius: 0;
  transition: transform 0.5s ease;
}

.feed-wide-link:hover .feed-wide-img img {
  transform: scale(1.04);
}

.feed-wide-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.feed-wide-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.feed-wide-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feed-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feed-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feed-card-link:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feed-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feed-card-img img {
  border-radius: 0;
  transition: transform 0.5s ease;
}

.feed-card-link:hover .feed-card-img img {
  transform: scale(1.04);
}

.feed-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feed-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.feed-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feed-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.feed-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-page {
  padding: 48px 24px 64px;
}

.article-container {
  max-width: 780px;
  margin: 0 auto;
}

.article-category {
  margin-bottom: 20px;
}

.article-category .badge {
  position: static;
  display: inline-flex;
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-graphite);
}

.article-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-green);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.byline-sep {
  opacity: 0.4;
}

.article-hero-img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-soft);
}

.article-body {
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 36px 0 16px;
  color: var(--accent-green);
  position: relative;
  padding-left: 18px;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-green), var(--accent-green-light));
  border-radius: 2px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-green-pale);
  color: var(--accent-green);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

.article-recommendations {
  margin: 40px 0;
}

.article-recommendations h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rec-symbol {
  color: var(--accent-green);
  font-size: 1rem;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rec-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.rec-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.rec-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.rec-img img {
  border-radius: 0;
  transition: transform 0.4s ease;
}

.rec-card:hover .rec-img img {
  transform: scale(1.05);
}

.rec-title {
  padding: 0 14px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.article-comments {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border-light);
}

.article-comments h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-graphite);
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-graphite);
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-green);
}

.form-check label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.comment-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.comment-modal.active {
  display: flex;
}

.comment-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.comment-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-icon {
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.modal-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-close {
  padding: 10px 28px;
  background: var(--accent-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-green-light);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--accent-green);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.cookie-banner.visible {
  transform: translateY(0);
  visibility: visible;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.cookie-banner-text i {
  font-size: 1.4rem;
  color: var(--accent-green);
  margin-top: 2px;
  flex-shrink: 0;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-width: 44px;
  min-height: 44px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
  color: var(--white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--text-muted);
  color: var(--text-graphite);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  word-break: break-word;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-graphite);
}

.last-updated,
.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--accent-green);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text-graphite);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0 12px 1.5rem;
  line-height: 1.7;
}

.legal-content li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text-graphite);
}

.site-footer {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #EDE8DF 100%);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-contacts {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-company {
  font-weight: 700;
  color: var(--text-graphite);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.footer-legal-links a {
  font-size: 0.9rem;
  color: var(--accent-green);
  font-weight: 500;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--accent-green-light);
  text-decoration: underline;
}

.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.65;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="flip-left"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}

[data-aos="flip-left"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .featured-hero-link,
  .featured-duo,
  .feed-wide-link,
  .feed-pair,
  .feed-layout {
    min-width: 0;
  }

  .featured-hero-link > *,
  .featured-duo > *,
  .feed-wide-link > *,
  .feed-pair > *,
  .feed-layout > * {
    min-width: 0;
    max-width: 100%;
  }

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

  .featured-hero-img {
    aspect-ratio: 16 / 9;
  }

  .feed-wide-link {
    grid-template-columns: 1fr;
  }

  .feed-wide-img {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    flex: 0 1 auto;
  }

  .logo a {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: fit-content;
    max-width: 100%;
  }

  .header-domain {
    word-break: break-all;
    flex-shrink: 0;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    font-size: 1.25rem;
  }

  .footer-col,
  .footer-contacts {
    word-break: break-all;
  }

  .featured-section {
    padding: 0 16px 24px;
  }

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

  .feed-section {
    padding: 24px 16px 24px;
  }

  .feed-pair {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .rec-grid {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding: 32px 16px 48px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-contacts {
    text-align: left;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .footer-disclaimer p {
    font-size: 0.82rem;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .legal-content {
    padding: 32px 16px 48px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.2rem;
  }
}

.ad-slot {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 24px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

main > .ad-slot:first-child {
  margin-top: 48px;
}

.feed-section .ad-slot,
.feed-layout .ad-slot {
  max-width: none;
  padding: 0;
  margin: 0 0 32px;
  width: 100%;
}

.article-container .ad-slot {
  max-width: none;
  padding: 0;
  margin: 32px 0;
  width: 100%;
}

.ad-banner-link {
  display: block;
}

.ad-banner-link img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .header-inner,
  .featured-section,
  .feed-section,
  .article-page,
  .legal-content,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .featured-hero-content {
    padding: 24px 20px 20px;
  }

  .comment-form input,
  .comment-form textarea,
  .comment-form select,
  .comment-form button,
  .cookie-btn {
    width: 100%;
    max-width: 100%;
  }

  .featured-hero-content h1,
  .article-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .ad-slot {
    padding: 0 12px;
    margin-bottom: 24px;
  }

  main > .ad-slot:first-child {
    margin-top: 32px;
  }

  .article-container .ad-slot,
  .feed-section .ad-slot,
  .feed-layout .ad-slot {
    padding: 0;
  }
}