body {
  font-family: "Inter", sans-serif;
  color: #111111;
  margin: 0;
  line-height: 1.6;
}

.site-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  text-align: center;
  padding: 20px 0 10px;
  border-bottom: 2px solid #111111;
}
.main-header .header-logo {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  height: auto;
}
.main-header .tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #63055d;
  margin: 5px 0 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}
.main-nav a {
  text-decoration: none;
  color: #111111;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: #63055d;
}

.home-grid-layout {
  display: grid;
  grid-template-columns: 2fr 350px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) {
  .home-grid-layout {
    grid-template-columns: 1fr;
  }
}

.data-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.data-dashboard .data-card {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-top: 5px solid #ffcc29;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.data-dashboard .data-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #666;
}
.data-dashboard .data-card .data-value {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #63055d;
  font-weight: 900;
  line-height: 1;
}

.home-sidebar {
  background: #fdfdfd;
  padding: 25px;
  border: 1px solid #eee;
  border-top: 5px solid #63055d;
  position: sticky;
  top: 20px;
}
.home-sidebar .sidebar-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #63055d;
  border-bottom: 2px solid #ffcc29;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.home-sidebar .sidebar-card {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.home-sidebar .sidebar-card h4 {
  margin: 5px 0 0;
  font-size: 1rem;
}
.home-sidebar .sidebar-card h4 a {
  text-decoration: none;
  color: #111;
}

.main-footer {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid #111111;
  text-align: center;
  font-size: 0.9rem;
}

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

.content-area img, .post-content img {
  display: block;
  margin: 2.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.content-area .medium-image, .post-content .medium-image {
  max-width: 550px !important;
  width: 100%;
  border: 3px solid #eee;
}

.home-sidebar img {
  margin: 10px 0;
  border-radius: 4px;
}

.post-content h1:contains("CACAREO"), .post-content {
  background: #fdfdfd;
  padding: 30px;
  border-left: 8px solid #25D366;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.post-content h1:contains("CACAREO") h1, .post-content h1:contains("CACAREO") h2, .post-content h1:contains("CACAREO") h3, .post-content h1, .post-content h2, .post-content h3 {
  color: #128C7E;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}
.post-content h1:contains("CACAREO") strong, .post-content strong {
  color: #63055d;
}

/*# sourceMappingURL=main.css.map */