/* CYLO Blog SEO */

:root {
  --navy: #1B2A4A;
  --navy2: #0F1D33;
  --orange: #F47B20;
  --orange-dark: #D95F0E;
  --green: #25D366;
  --green-dark: #128C7E;
  --light: #F4F6F9;
  --soft: #F8FAFC;
  --border: #D8E2EF;
  --text: #24324A;
  --muted: #6B7A8D;
  --white: #FFFFFF;
  --shadow: 0 8px 28px rgba(16, 29, 51, 0.10);
  --shadow-soft: 0 4px 16px rgba(16, 29, 51, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: #FFFFFF;
}

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

a {
  color: inherit;
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(244,123,32,0.20), transparent 30%),
    linear-gradient(135deg, var(--navy2), var(--navy));
  color: white;
  padding: 58px 0;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.blog-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  margin: 0 0 16px;
  letter-spacing: -1.2px;
  max-width: 900px;
}

.blog-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.blog-hero p {
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 1.03rem;
  margin: 0;
  max-width: 760px;
}

.blog-hero-card {
  background: rgba(255,255,255,0.98);
  color: var(--text);
  border-left: 4px solid var(--orange);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.blog-hero-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-hero-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.blog-section {
  padding: 64px 0;
}

.blog-section.light {
  background: var(--light);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: white;
  border: 1px solid var(--border);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,123,32,0.45);
  box-shadow: var(--shadow);
}

.blog-card-top {
  min-height: 122px;
  background:
    linear-gradient(135deg, rgba(15,29,51,0.92), rgba(27,42,74,0.86));
  color: white;
  padding: 18px;
  display: flex;
  align-items: end;
  border-bottom: 4px solid var(--orange);
}

.blog-card-top span {
  color: rgba(255,255,255,0.68);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
  margin: 0;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.read-more {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-top: auto;
}

.article-hero {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  padding: 44px 0 34px;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

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

.article-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(2.3rem, 4.7vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 0 0 16px;
  max-width: 980px;
}

.article-excerpt {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 880px;
  margin: 0;
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-shell {
  padding: 52px 0 70px;
  background: var(--light);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.article-content {
  background: white;
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.article-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.1;
  margin: 34px 0 14px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.article-content p,
.article-content li {
  color: var(--text);
  line-height: 1.78;
  font-size: 1rem;
}

.article-content p {
  margin: 0 0 16px;
}

.article-content ul,
.article-content ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

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

.article-note {
  background: #FFF8F1;
  border-left: 4px solid var(--orange);
  padding: 18px;
  margin: 26px 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.6;
}

.article-sidebar {
  position: sticky;
  top: 156px;
  display: grid;
  gap: 14px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.sidebar-card.dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.sidebar-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1rem;
}

.sidebar-card.dark h3 {
  color: white;
}

.sidebar-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.sidebar-card.dark p {
  color: rgba(255,255,255,0.72);
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.sidebar-card a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 850;
  font-size: 0.9rem;
}

.sidebar-card a:hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  padding: 13px 18px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

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

.btn-whatsapp {
  background: var(--green);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.inline-cta {
  background:
    radial-gradient(circle at 90% 0%, rgba(244,123,32,0.22), transparent 34%),
    linear-gradient(135deg, var(--navy2), var(--navy));
  color: white;
  padding: 26px;
  margin: 30px 0;
}

.inline-cta h2 {
  color: white;
  margin-top: 0;
}

.inline-cta p {
  color: rgba(255,255,255,0.72);
}

.related-posts {
  padding: 54px 0;
}

.site-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(244,123,32,0.18), transparent 28%),
    linear-gradient(135deg, #08111F 0%, var(--navy2) 48%, #132542 100%);
  color: rgba(255,255,255,0.70);
}

.footer-main {
  padding: 44px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 34px;
}

.footer-brand h2 {
  color: white;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  margin: 0 0 10px;
}

.footer-brand h2 em {
  color: var(--orange);
  font-style: normal;
}

.footer-brand p,
.site-footer li {
  line-height: 1.7;
  font-size: 0.9rem;
}

.site-footer h3 {
  color: white;
  margin: 0 0 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 16px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  .blog-hero-grid,
  .section-head,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .article-shell {
    padding: 42px 0;
  }

  .article-content {
    padding: 24px;
  }
}


/* CYLO BLOG SAFE MOBILE V13 */
@media (max-width: 780px) {
  .blog-hero {
    padding: 34px 0 !important;
  }

  .blog-hero-grid,
  .article-grid,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-hero-card {
    display: none !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .article-content {
    padding: 22px !important;
  }

  .article-sidebar {
    position: static !important;
  }
}

