/*
Theme Name: HablemosDeCuckolding
Description: Tema editorial limpio para HablemosDeCuckolding.online
Version: 1.0
Author: HablemosDeCuckolding
*/

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== BASE ===== */
body {
  background: #0e0e12;
  color: #c8c8d8;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.hble-header {
  background: #0e0e12;
  border-bottom: 1px solid #2e2e3e;
  position: sticky;
  top: 0;
  z-index: 100;
}
.hble-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hble-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f0f0f5;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.hble-logo-icon {
  color: #c9a84c;
  font-size: 1.5rem;
}
.hble-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}
.hble-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: #b0b0c0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
}
.hble-nav a:hover,
.hble-nav a[aria-current="page"] {
  color: #f0f0f5;
  background: #1a1a24;
}

/* ===== MAIN ===== */
.hble-main {
  min-height: calc(100vh - 200px);
  background: #0e0e12;
}
.hble-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.hble-article {
  margin-bottom: 3rem;
}
.hble-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #f0f0f5;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #c9a84c;
}
.hble-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #c8c8d8;
}
.hble-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  color: #f0f0f5;
  margin: 3rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2e2e3e;
}
.hble-content h3 {
  font-size: 1.3rem;
  color: #e8e8f0;
  margin: 2rem 0 1rem;
}
.hble-content p {
  margin-bottom: 1.5rem;
}
.hble-content ul,
.hble-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.hble-content li {
  margin-bottom: 0.8rem;
}
.hble-content a {
  color: #c9a84c;
  text-decoration: none;
  font-weight: 500;
}
.hble-content a:hover {
  color: #e0c06c;
  text-decoration: underline;
}
.hble-content strong {
  color: #f0f0f5;
  font-weight: 600;
}
.hble-content hr {
  border: none;
  border-top: 1px solid #2e2e3e;
  margin: 2rem 0;
}
.hble-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  border: 1px solid #2e2e3e;
}

/* ===== FOOTER ===== */
.hble-footer {
  background: #0a0a0e;
  border-top: 1px solid #2e2e3e;
  padding: 3rem 0 0;
  margin-top: 4rem;
}
.hble-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hble-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2e2e3e;
}
.hble-tagline {
  color: #7878a0;
  font-size: 0.95rem;
  margin-top: 0.8rem;
}
.hble-footer h3 {
  color: #c9a84c;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.hble-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hble-footer li {
  margin-bottom: 0.6rem;
}
.hble-footer a {
  color: #b0b0c0;
  text-decoration: none;
  font-size: 0.9rem;
}
.hble-footer a:hover {
  color: #f0f0f5;
}
.hble-footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: #585878;
  font-size: 0.8rem;
}

/* ===== MOBILE ===== */
@media (max-width: 782px) {
  .hble-header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .hble-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hble-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hble-title {
    font-size: 1.8rem;
  }
}
