/* =================== RESET & BASE =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #3D3532;
  background: #FFFDF7;
  line-height: 1.75;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5em; }

/* =================== COLORS =================== */
:root {
  --sage: #8B9F82;
  --sage-light: #C5D1BF;
  --sage-dark: #6B7F62;
  --blush: #F2DED0;
  --blush-light: #FBF3ED;
  --cream: #FFFDF7;
  --cream-warm: #FAF6EF;
  --gold: #C4A87C;
  --gold-light: #E0D0B0;
  --text: #3D3532;
  --text-light: #7A716B;
  --text-muted: #A89F99;
  --border: #EDE8E2;
  --dusty-rose: #C9A9A6;
  --dusty-rose-light: #E8D5D3;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* =================== LAYOUT =================== */
.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }

/* =================== NAVIGATION =================== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 780px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
}
.nav-brand em { font-style: italic; color: var(--dusty-rose); }
.nav-links { display: flex; gap: 24px; }
.nav-link {
  font-size: 0.75rem; color: var(--text-light);
  transition: color 0.2s;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--sage-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); }

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
}

/* =================== HERO =================== */
.hero { position: relative; overflow: hidden; }
.hero-image {
  width: 100%; height: 480px;
  object-fit: cover;
  filter: brightness(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,253,247,0.25) 0%, rgba(255,253,247,0.82) 65%, rgba(255,253,247,1) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 48px;
}
.hero-content { text-align: center; max-width: 580px; padding: 0 24px; }
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--sage); margin-bottom: 14px;
}
.hero-title {
  font-size: 2.75rem;
  line-height: 1.15; margin-bottom: 16px;
  font-weight: 400;
}
.hero-title .accent { color: var(--sage-dark); }
.hero-title .rose { color: var(--dusty-rose); }
.hero-desc {
  font-size: 1rem; color: var(--text-light);
  max-width: 480px; margin: 0 auto 24px;
  line-height: 1.65;
}
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } .hero-image { height: 540px; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } .hero-image { height: 580px; } }

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: white;
  padding: 12px 28px; border-radius: 4px;
  font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* =================== ARTICLE CARDS (Homepage) =================== */
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--sage); margin-bottom: 10px;
}
.section-title {
  font-size: 2rem; font-weight: 400; margin-bottom: 28px;
}

.article-card {
  display: block; border-radius: 6px; overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.25s;
}
.article-card:hover { box-shadow: 0 12px 40px rgba(61,53,50,0.06); transform: translateY(-3px); }
.article-card-image { width: 100%; height: 200px; object-fit: cover; }
.article-card-body { padding: 20px 22px 24px; }
.article-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage);
}
.article-card h3 {
  font-size: 1.25rem; font-weight: 500;
  margin: 8px 0 10px; line-height: 1.35;
}
.article-card:hover h3 { color: var(--sage-dark); }
.article-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.55; }
.read-more {
  display: inline-block; margin-top: 14px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--sage-dark); letter-spacing: 0.04em;
  border-bottom: 1px solid var(--sage-light);
}

/* =================== DIVIDERS =================== */
.leaf-divider {
  text-align: center; font-size: 1.2rem;
  color: var(--sage-light); margin: 32px 0;
  letter-spacing: 0.5em;
}

/* =================== CTA SECTION =================== */
.cta-section {
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0; text-align: center;
}
.cta-inner h2 { font-size: 1.75rem; font-weight: 400; margin-bottom: 12px; }
.cta-inner p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }
.cta-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  display: inline-block;
  background: white; border: 1px solid var(--border);
  border-radius: 4px; padding: 8px 18px;
  font-size: 0.8rem; font-weight: 400;
  color: var(--text-light); letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--sage-light); color: var(--sage-dark); }

/* =================== ARTICLE PAGE =================== */
.article-header { position: relative; overflow: hidden; }
.article-hero-image {
  width: 100%; height: 360px;
  object-fit: cover; filter: brightness(1.02);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,253,247,0.15) 0%, rgba(255,253,247,0.8) 65%, rgba(255,253,247,1) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 24px 40px;
}
.article-hero-content { text-align: center; max-width: 640px; }
.article-header h1 { font-size: 2.25rem; font-weight: 400; line-height: 1.25; }
.article-date { color: var(--text-muted); font-size: 0.8rem; margin-top: 12px; letter-spacing: 0.06em; }
@media (min-width: 640px) {
  .article-header h1 { font-size: 2.75rem; }
  .article-hero-image { height: 420px; }
}

/* =================== ARTICLE BODY =================== */
.article-body { padding: 40px 24px 56px; max-width: 680px; margin: 0 auto; }
.article-body .lead {
  font-size: 1.1rem; line-height: 1.75;
  color: var(--text-light); margin-bottom: 28px;
  font-style: italic;
}
.article-body h2 {
  font-size: 1.75rem; font-weight: 400;
  margin-top: 52px; margin-bottom: 18px;
}
.article-body h3 {
  font-size: 1.3rem; font-weight: 500;
  margin-top: 36px; margin-bottom: 12px;
}
.article-body p { color: var(--text-light); margin-bottom: 16px; }
.article-body a { color: var(--sage-dark); font-weight: 500; border-bottom: 1px solid var(--sage-light); }
.article-body a:hover { color: var(--sage); border-color: var(--sage); }
.article-body ul, .article-body ol { margin-bottom: 16px; color: var(--text-light); }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body em { color: var(--text); }

.article-image-break { margin: 40px -24px; }
.article-image-break img { width: 100%; height: 280px; object-fit: cover; }
@media (min-width: 640px) {
  .article-image-break { margin: 48px -60px; border-radius: 6px; overflow: hidden; }
  .article-image-break img { height: 340px; }
}

/* Info box */
.info-box {
  background: var(--blush-light);
  border-left: 3px solid var(--dusty-rose-light);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 6px 6px 0;
}
.info-box p { margin-bottom: 8px; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--text); }

/* Tip box */
.tip-box {
  background: linear-gradient(135deg, var(--cream-warm) 0%, #f5f0e8 100%);
  border: 1px solid var(--border);
  padding: 24px;
  margin: 28px 0;
  border-radius: 6px;
  position: relative;
}
.tip-box::before {
  content: '💡';
  position: absolute;
  top: -12px; left: 20px;
  font-size: 1.2rem;
  background: var(--cream);
  padding: 0 6px;
}
.tip-box p { margin-bottom: 8px; }
.tip-box p:last-child { margin-bottom: 0; }

/* Quote */
.article-body blockquote {
  border-left: 3px solid var(--sage-light);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--cream-warm);
  border-radius: 0 6px 6px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
}

/* =================== PRODUCT CARDS =================== */
.product-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 32px 0;
  background: white;
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 6px 24px rgba(61,53,50,0.05); }

/* Featured/Favorit label */
.product-recommendation {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; font-style: italic;
  color: var(--sage-dark);
  padding: 10px 20px;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--border);
}
.product-inner { display: flex; gap: 20px; padding: 20px; align-items: flex-start; }
.product-image {
  flex-shrink: 0;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
.product-content { flex: 1; min-width: 0; }
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 4px; color: var(--text);
}
.product-rating { margin-bottom: 8px; font-size: 0.75rem; }
.stars { color: var(--gold); }
.review-count { color: var(--text-muted); }
.product-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.55; }
.product-action { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--text);
}
.btn-amazon {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--sage-dark);
  padding: 7px 16px; border: 1px solid var(--sage-light);
  border-radius: 4px; font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.03em; transition: all 0.2s;
}
.btn-amazon:hover { background: var(--sage); color: white; border-color: var(--sage); }

/* Alternative product (competitor - slightly less appealing) */
.product-card.alt {
  border-color: #e5e0da;
  background: var(--cream-warm);
}
.product-card.alt .product-recommendation {
  background: #f0ebe5;
  color: var(--text-muted);
}
.product-card.alt .product-title {
  font-size: 1rem;
}
.product-card.alt .btn-amazon {
  color: var(--text-muted);
  border-color: #ddd;
}
.product-card.alt .btn-amazon:hover {
  background: var(--text-muted);
  color: white;
  border-color: var(--text-muted);
}

@media (max-width: 480px) {
  .product-inner { flex-direction: column; align-items: center; text-align: center; }
  .product-action { justify-content: center; }
}

/* =================== RELATED ARTICLES =================== */
.related-links { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.related-links h3 { font-size: 1.3rem; margin-bottom: 16px; }
.related-links .pill { margin-right: 8px; margin-bottom: 8px; }

/* =================== CHECKLIST =================== */
.checklist { list-style: none; padding-left: 0; }
.checklist li {
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  position: relative;
}
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--sage);
  font-weight: 600;
  font-size: 1rem;
}

/* =================== STEP BOXES =================== */
.step-box {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
}
.step-content h4 {
  font-size: 1.1rem; margin-bottom: 6px;
}
.step-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* =================== TABLE =================== */
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 0.9rem; }
.article-body th {
  background: var(--cream-warm); font-weight: 500; text-align: left;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
}
.article-body td { padding: 10px 16px; border-bottom: 1px solid var(--border); color: var(--text-light); }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  max-width: 780px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 32px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; } }
.site-footer h3 {
  font-size: 1.1rem; font-weight: 500; margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}
.site-footer p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a {
  font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s;
}
.site-footer li a:hover { color: var(--sage-dark); }
.footer-bottom {
  max-width: 780px; margin: 36px auto 0; padding: 20px 24px;
  border-top: 1px solid var(--border); text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* Tip box icon */
.tip-box {
  position: relative;
  padding-left: 52px !important;
}
.tip-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}
/* Info box icon */
.info-box {
  position: relative;
  padding-left: 52px !important;
}
.info-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}

/* Tip box icon */
.tip-box {
  position: relative;
  padding-left: 52px !important;
}
.tip-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}
/* Info box icon */
.info-box {
  position: relative;
  padding-left: 52px !important;
}
.info-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}
/* Section heading icons */
.section-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.75;
  transform: translateY(-2px);
  flex-shrink: 0;
}
h3 .section-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
@media (max-width: 600px) {
  .section-icon { width: 26px; height: 26px; margin-right: 5px; }
  .rec-icon { width: 28px; height: 28px; }
}

/* Tip box icon */
.tip-box {
  position: relative;
  padding-left: 52px !important;
}
.tip-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}
/* Info box icon */
.info-box {
  position: relative;
  padding-left: 52px !important;
}
.info-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}
/* Section heading icons */
.section-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.75;
  transform: translateY(-2px);
  flex-shrink: 0;
}
h3 .section-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
/* Floating hand-drawn illustrations beside sections */

/* Decorative flourish between sections */
.section-flourish {
  display: block;
  margin: 16px auto;
  width: 90px;
  height: auto;
  opacity: 0.6;
}
/* Clear floats before product cards and h2 headings */
.product-card, h2, .article-image-break, .tip-box, .info-box {
  clear: both;
}
@media (max-width: 768px) {
  
  
  
}
@media (max-width: 500px) {
  
  .section-icon { width: 26px; height: 26px; margin-right: 5px; }
  .rec-icon { width: 28px; height: 28px; }
}

/* Tip box icon */
.tip-box {
  position: relative;
  padding-left: 52px !important;
}
.tip-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}
/* Info box icon */
.info-box {
  position: relative;
  padding-left: 52px !important;
}
.info-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}
/* Section heading icons */
.section-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.75;
  transform: translateY(-2px);
  flex-shrink: 0;
}
h3 .section-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
/* Floating hand-drawn illustrations beside sections */

/* Decorative flourish between sections */
.section-flourish {
  display: block;
  margin: 16px auto;
  width: 90px;
  height: auto;
  opacity: 0.6;
}
/* Clear floats before product cards and h2 headings */
.product-card, h2, .article-image-break, .tip-box, .info-box {
  clear: both;
}
@media (max-width: 768px) {
  
  
  
}
@media (max-width: 500px) {
  
  .section-icon { width: 26px; height: 26px; margin-right: 5px; }
  .rec-icon { width: 28px; height: 28px; }
}

/* Hand-drawn recommendation icons */
.rec-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
  opacity: 0.85;
  transform: translateY(-1px);
}
.product-recommendation {
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.product-card.alt .rec-icon {
  opacity: 0.6;
  width: 28px;
  height: 28px;
}
/* Tip box icon */
.tip-box {
  position: relative;
  padding-left: 52px !important;
}
.tip-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}
/* Info box icon */
.info-box {
  position: relative;
  padding-left: 52px !important;
}
.info-box .box-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  opacity: 0.65;
}
/* Section heading icons */
.section-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.75;
  transform: translateY(-2px);
  flex-shrink: 0;
}
h3 .section-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
/* Floating hand-drawn illustrations beside sections */

/* Decorative flourish between sections */
.section-flourish {
  display: block;
  margin: 16px auto;
  width: 90px;
  height: auto;
  opacity: 0.6;
}
/* Clear floats before product cards and h2 headings */
.product-card, h2, .article-image-break, .tip-box, .info-box {
  clear: both;
}
@media (max-width: 768px) {
  
  
  
}
@media (max-width: 500px) {
  
  .section-icon { width: 26px; height: 26px; margin-right: 5px; }
  .rec-icon { width: 28px; height: 28px; }
}

/* =================== LARGE FLOATING ILLUSTRATIONS =================== */
.section-illustration {
  width: 260px;
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 2px 8px rgba(139,159,130,0.08));
  shape-margin: 16px;
}
.section-illustration.float-left {
  float: left;
  margin: 0 36px 20px -20px;
  shape-outside: margin-box;
}
.section-illustration.float-right {
  float: right;
  margin: 0 -20px 20px 36px;
  shape-outside: margin-box;
}

/* Large hero-style illustrations for main sections */
.deco-illustration {
  width: 260px;
  height: auto;
  opacity: 0.55;
  shape-margin: 20px;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}
.deco-illustration:hover {
  opacity: 0.72;
}
.deco-illustration.float-left {
  float: left;
  margin: -4px 36px 20px -24px;
  shape-outside: margin-box;
}
.deco-illustration.float-right {
  float: right;
  margin: -4px -24px 20px 36px;
  shape-outside: margin-box;
}

/* Clearfix for sections with illustrations */
.illust-section::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 700px) {
  .section-illustration {
    width: 180px;
  }
  .section-illustration.float-left { margin: 0 24px 16px 0; }
  .section-illustration.float-right { margin: 0 0 16px 24px; }
  
  .deco-illustration {
    width: 200px;
  }
  .deco-illustration.float-left { margin: -4px 28px 18px -8px; }
  .deco-illustration.float-right { margin: -4px -8px 18px 28px; }
}

@media (max-width: 500px) {
  .section-illustration { width: 140px; }
  .section-illustration.float-left { margin: 0 16px 12px 0; }
  .section-illustration.float-right { margin: 0 0 12px 16px; }
  
  .deco-illustration { width: 150px; }
  .deco-illustration.float-left { margin: 0 20px 14px 0; }
  .deco-illustration.float-right { margin: 0 0 14px 20px; }
  
  .section-icon { width: 26px; height: 26px; margin-right: 5px; }
  .rec-icon { width: 28px; height: 28px; }
}

/* Homepage illustration decorations */
.home-deco {
  position: absolute;
  width: 220px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.home-deco.left {
  left: -60px;
  top: 20px;
}
.home-deco.right {
  right: -60px;
  bottom: 20px;
}
.cta-section {
  position: relative;
  overflow: hidden;
}
