/*
Theme Name: Blend do Dia
Theme URI: https://blenddodia.com
Description: Tema customizado para o blog Blend do Dia — insights diários sobre tecnologia, investimentos, saúde e cultura.
Author: Blend do Dia
Author URI: https://blenddodia.com
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: blend-do-dia
Template: astra
*/

/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --blend-dark: #1a1210;
  --blend-brown: #2c1e14;
  --blend-coffee: #4a3728;
  --blend-caramel: #c8956c;
  --blend-gold: #d4a574;
  --blend-cream: #f5e6d3;
  --blend-warm-white: #fefcf9;
  --blend-accent: #e8a849;
  --blend-tech: #1e3a5f;
  --blend-invest: #1a5c3a;
  --blend-health: #5c3a1a;
  --blend-culture: #3a1a5c;
  --blend-special: #8b1a1a;
  --blend-radius: 12px;
  --blend-shadow: 0 4px 20px rgba(44, 30, 20, 0.08);
  --blend-shadow-hover: 0 8px 32px rgba(44, 30, 20, 0.15);
  --blend-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--blend-warm-white);
  color: #3d2e22;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--blend-brown);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

a {
  color: var(--blend-caramel);
  text-decoration: none;
  transition: var(--blend-transition);
}
a:hover { color: var(--blend-gold); }

p {
  margin-bottom: 1.2em;
  color: #4a3a2e;
}

/* ===== CONTAINER ===== */
.blend-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blend-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.blend-header {
  background: var(--blend-brown);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.blend-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.blend-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blend-caramel), var(--blend-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.blend-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blend-cream);
  letter-spacing: -0.5px;
}

.blend-logo-text span {
  color: var(--blend-gold);
}

/* Navigation */
.blend-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.blend-nav a {
  color: var(--blend-cream);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--blend-transition);
  opacity: 0.85;
}

.blend-nav a:hover,
.blend-nav a.active {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  color: var(--blend-gold);
}

.blend-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blend-cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.blend-hero {
  background: linear-gradient(135deg, var(--blend-brown) 0%, var(--blend-coffee) 50%, var(--blend-dark) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.blend-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.blend-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.blend-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.blend-hero h1 {
  color: var(--blend-cream);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
}

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

.blend-hero-tagline {
  color: rgba(245, 230, 211, 0.8);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
}

.blend-hero-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blend-hero-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  transition: var(--blend-transition);
  text-decoration: none;
}

.blend-hero-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #fff;
}

.blend-hero-cat.tech { background: var(--blend-tech); }
.blend-hero-cat.invest { background: var(--blend-invest); }
.blend-hero-cat.health { background: var(--blend-health); }
.blend-hero-cat.culture { background: var(--blend-culture); }
.blend-hero-cat.special { background: var(--blend-special); }

/* ===== CAROUSEL / BLEND ESPECIAL ===== */
.blend-carousel-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--blend-cream) 0%, var(--blend-warm-white) 100%);
}

.blend-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.blend-section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--blend-special), #b33030);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.blend-section-header h2 {
  margin-bottom: 10px;
}

.blend-section-header p {
  color: #7a6a5e;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.blend-carousel {
  position: relative;
  overflow: hidden;
}

.blend-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0 20px;
}

.blend-carousel-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  border-radius: var(--blend-radius);
  box-shadow: var(--blend-shadow);
  overflow: hidden;
  transition: var(--blend-transition);
  flex-shrink: 0;
}

.blend-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--blend-shadow-hover);
}

.blend-carousel-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blend-carousel-card-body {
  padding: 20px;
}

.blend-carousel-card-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
  margin-bottom: 10px;
}

.blend-carousel-card-cat.tech { background: var(--blend-tech); }
.blend-carousel-card-cat.invest { background: var(--blend-invest); }
.blend-carousel-card-cat.health { background: var(--blend-health); }
.blend-carousel-card-cat.culture { background: var(--blend-culture); }

.blend-carousel-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blend-carousel-card h3 a {
  color: var(--blend-brown);
}

.blend-carousel-card h3 a:hover {
  color: var(--blend-caramel);
}

.blend-carousel-card p {
  font-size: 0.9rem;
  color: #7a6a5e;
  line-height: 1.5;
  margin-bottom: 12px;
}

.blend-carousel-card .read-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blend-caramel);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blend-carousel-card .read-link:hover {
  gap: 8px;
}

.blend-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.blend-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blend-caramel);
  background: transparent;
  color: var(--blend-caramel);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--blend-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blend-carousel-btn:hover {
  background: var(--blend-caramel);
  color: #fff;
}

/* ===== LATEST POSTS ===== */
.blend-latest-section {
  padding: 60px 0 80px;
}

.blend-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blend-post-card {
  background: #fff;
  border-radius: var(--blend-radius);
  box-shadow: var(--blend-shadow);
  overflow: hidden;
  transition: var(--blend-transition);
  animation: fadeInUp 0.6s ease-out backwards;
}

.blend-post-card:nth-child(2) { animation-delay: 0.1s; }
.blend-post-card:nth-child(3) { animation-delay: 0.2s; }
.blend-post-card:nth-child(4) { animation-delay: 0.3s; }
.blend-post-card:nth-child(5) { animation-delay: 0.4s; }

.blend-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--blend-shadow-hover);
}

.blend-post-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.blend-post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blend-post-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.blend-post-card-cat.cat-tecnologia { background: rgba(30, 58, 95, 0.9); }
.blend-post-card-cat.cat-investimentos { background: rgba(26, 92, 58, 0.9); }
.blend-post-card-cat.cat-saude { background: rgba(92, 58, 26, 0.9); }
.blend-post-card-cat.cat-cultura { background: rgba(58, 26, 92, 0.9); }
.blend-post-card-cat.cat-blend-especial { background: rgba(139, 26, 26, 0.9); }

.blend-post-card-body {
  padding: 22px;
}

.blend-post-card-meta {
  font-size: 0.8rem;
  color: #9a8a7e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blend-post-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blend-post-card h3 a {
  color: var(--blend-brown);
}

.blend-post-card h3 a:hover {
  color: var(--blend-caramel);
}

.blend-post-card-excerpt {
  font-size: 0.92rem;
  color: #6a5a4e;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blend-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blend-caramel);
  padding: 8px 20px;
  border: 1.5px solid var(--blend-caramel);
  border-radius: 50px;
  transition: var(--blend-transition);
}

.blend-read-more:hover {
  background: var(--blend-caramel);
  color: #fff;
}

/* ===== SINGLE POST ===== */
.blend-single-header {
  background: linear-gradient(135deg, var(--blend-brown), var(--blend-coffee));
  padding: 60px 0 80px;
  text-align: center;
}

.blend-single-header .blend-post-card-cat {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}

.blend-single-header h1 {
  color: var(--blend-cream);
  max-width: 700px;
  margin: 0 auto 16px;
}

.blend-single-meta {
  color: rgba(245, 230, 211, 0.7);
  font-size: 0.9rem;
}

.blend-single-featured {
  max-width: 800px;
  margin: -50px auto 0;
  position: relative;
  z-index: 1;
}

.blend-single-featured img {
  width: 100%;
  border-radius: var(--blend-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.blend-single-content {
  max-width: 740px;
  margin: 40px auto 60px;
  padding: 0 24px;
}

.blend-single-content h2 {
  margin: 2em 0 0.8em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blend-cream);
}

.blend-single-content h3 {
  margin: 1.5em 0 0.6em;
}

.blend-single-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4em;
}

.blend-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5em 0;
}

.blend-single-content blockquote {
  background: linear-gradient(135deg, var(--blend-cream), rgba(245, 230, 211, 0.5));
  border-left: 4px solid var(--blend-gold);
  padding: 24px 28px;
  margin: 2em 0;
  border-radius: 0 var(--blend-radius) var(--blend-radius) 0;
  font-style: italic;
  position: relative;
}

.blend-single-content blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--blend-gold);
  position: absolute;
  top: -10px;
  left: 12px;
  opacity: 0.4;
  line-height: 1;
}

.blend-single-content blockquote p {
  font-size: 1rem;
  color: var(--blend-coffee);
  margin-bottom: 0;
}

.blend-single-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5em 0;
  border-radius: var(--blend-radius);
  overflow: hidden;
  box-shadow: var(--blend-shadow);
}

.blend-single-content table thead th {
  background: linear-gradient(135deg, var(--blend-brown), var(--blend-coffee));
  color: var(--blend-cream);
  padding: 14px 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

.blend-single-content table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--blend-cream);
  font-size: 0.92rem;
}

.blend-single-content table tbody tr:hover {
  background: rgba(200, 149, 108, 0.08);
}

.blend-single-content table tbody tr:last-child td {
  border-bottom: none;
}

.blend-single-content ul, .blend-single-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.blend-single-content li {
  margin-bottom: 0.6em;
  line-height: 1.7;
}

.blend-single-content a {
  color: var(--blend-caramel);
  text-decoration: underline;
  text-decoration-color: rgba(200, 149, 108, 0.3);
  text-underline-offset: 3px;
  transition: var(--blend-transition);
}

.blend-single-content a:hover {
  color: var(--blend-gold);
  text-decoration-color: var(--blend-gold);
}

/* ===== FOOTER ===== */
.blend-footer {
  background: var(--blend-dark);
  color: rgba(245, 230, 211, 0.7);
  padding: 50px 0 30px;
}

.blend-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.blend-footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--blend-cream);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.blend-footer-brand h3 span {
  color: var(--blend-gold);
}

.blend-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 230, 211, 0.6);
}

.blend-footer-links h4 {
  color: var(--blend-cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.blend-footer-links ul {
  list-style: none;
  padding: 0;
}

.blend-footer-links li {
  margin-bottom: 8px;
}

.blend-footer-links a {
  color: rgba(245, 230, 211, 0.6);
  font-size: 0.9rem;
  transition: var(--blend-transition);
}

.blend-footer-links a:hover {
  color: var(--blend-gold);
}

.blend-footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--blend-cream); }
::-webkit-scrollbar-thumb {
  background: var(--blend-caramel);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--blend-coffee); }

/* ===== ARCHIVE / CATEGORY PAGE ===== */
.blend-archive-header {
  background: linear-gradient(135deg, var(--blend-brown), var(--blend-coffee));
  padding: 50px 0;
  text-align: center;
}

.blend-archive-header h1 {
  color: var(--blend-cream);
  margin-bottom: 8px;
}

.blend-archive-header p {
  color: rgba(245, 230, 211, 0.7);
  font-size: 1rem;
}

.blend-archive-content {
  padding: 50px 0 80px;
}

/* ===== CTA SECTION ===== */
.blend-cta-section {
  background: linear-gradient(135deg, var(--blend-brown), var(--blend-coffee));
  padding: 60px 0;
  text-align: center;
}

.blend-cta-section h2 {
  color: var(--blend-cream);
  margin-bottom: 12px;
}

.blend-cta-section p {
  color: rgba(245, 230, 211, 0.7);
  max-width: 500px;
  margin: 0 auto 24px;
}

.blend-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blend-caramel), var(--blend-gold));
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--blend-transition);
  text-decoration: none;
}

.blend-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.4);
  color: #fff;
}

/* ===== COMMENTS ===== */
.blend-comments {
  max-width: 740px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.blend-comments h3 {
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blend-cream);
}

.blend-comments .comment {
  background: #fff;
  padding: 20px;
  border-radius: var(--blend-radius);
  margin-bottom: 16px;
  box-shadow: var(--blend-shadow);
}

.blend-comments .comment-respond {
  background: var(--blend-cream);
  padding: 28px;
  border-radius: var(--blend-radius);
  margin-top: 24px;
}

.blend-comments textarea {
  width: 100%;
  border: 1px solid rgba(200, 149, 108, 0.3);
  border-radius: 8px;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
  min-height: 120px;
  transition: var(--blend-transition);
}

.blend-comments textarea:focus {
  outline: none;
  border-color: var(--blend-caramel);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
}

.blend-comments input[type="submit"] {
  background: linear-gradient(135deg, var(--blend-caramel), var(--blend-gold));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--blend-transition);
  margin-top: 12px;
}

.blend-comments input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 149, 108, 0.4);
}

/* ===== SIDEBAR ===== */
.blend-sidebar .widget {
  background: #fff;
  padding: 24px;
  border-radius: var(--blend-radius);
  box-shadow: var(--blend-shadow);
  margin-bottom: 24px;
}

.blend-sidebar .widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blend-cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .blend-header-inner {
    height: 60px;
  }

  .blend-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--blend-brown);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .blend-nav.open {
    display: flex;
  }

  .blend-nav a {
    padding: 12px 16px;
    width: 100%;
  }

  .blend-nav-toggle {
    display: block;
  }

  .blend-hero {
    padding: 50px 0 70px;
  }

  .blend-hero-categories {
    gap: 8px;
  }

  .blend-hero-cat {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .blend-carousel-card {
    min-width: calc(85% - 12px);
  }

  .blend-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .blend-single-content {
    padding: 0 16px;
  }

  .blend-single-featured {
    margin: -30px 16px 0;
  }
}

@media (max-width: 480px) {
  .blend-hero h1 {
    font-size: 1.8rem;
  }

  .blend-hero-tagline {
    font-size: 1rem;
  }
}

/* ===== HIDE ASTRA DEFAULTS ===== */
#masthead,
.ast-above-header-wrap,
.ast-below-header-wrap,
.site-footer,
.ast-footer-overlay,
#colophon,
.ast-small-footer,
.ast-footer-copyright,
.site-header,
.main-header-bar,
.ast-primary-header-bar {
  display: none !important;
}

/* Override Astra body styles */
body.flavor-flavor .site-content,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single {
  background: transparent;
  padding: 0;
}

.ast-separate-container .site-main > .ast-row {
  padding: 0;
}

.entry-content {
  margin: 0;
}

/* Hide Astra navigation */
.ast-header-break-point .main-header-bar-navigation,
.ast-header-break-point .ast-mobile-header-wrap {
  display: none !important;
}
