/* [project]/src/app/respuestas/[slug]/respuesta-detail.css [app-client] (css) */
.respd-wrap {
  background: #fff;
  width: 100%;
}

.respd-layout {
  grid-template-columns: 1fr 320px;
  align-items: start;
  gap: 44px;
  max-width: min(80%, 1400px);
  margin: 0 auto;
  padding: 32px 0 80px;
  display: grid;
}

.respd-main {
  min-width: 0;
}

.respd-hero {
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
}

.respd-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.respd-content-wrap {
  margin-bottom: 48px;
}

.respd-header {
  margin-bottom: 24px;
}

.respd-badge {
  color: #fff;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #007c8a;
  border-radius: 3px;
  margin-bottom: 12px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  display: inline-block;
}

.respd-title {
  font-family: var(--font-display);
  color: #0a1628;
  margin: 0 0 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.respd-date {
  color: #8a9bac;
  font-size: 13px;
}

.respd-lead {
  color: #2d4057;
  border-left: 3px solid #007c8a;
  margin: 0 0 28px;
  padding-left: 16px;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
}

.respd-body {
  color: #2d4057;
  max-width: none;
  font-size: 15px;
  line-height: 1.75;
}

.respd-body h2 {
  font-family: var(--font-display);
  color: #0a1628;
  border-bottom: 1px solid #0a162817;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.respd-body h3 {
  font-family: var(--font-display);
  color: #005f6b;
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.respd-body p {
  margin: 0 0 16px;
}

.respd-body ul, .respd-body ol {
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px 20px;
  display: flex;
}

.respd-body li {
  line-height: 1.65;
}

.respd-body a {
  color: #007c8a;
  text-underline-offset: 3px;
  text-decoration: underline;
}

.respd-body a:hover {
  color: #005f6b;
}

.respd-body strong {
  color: #0a1628;
  font-weight: 700;
}

.respd-body img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

.respd-body .toc-filter {
  background: #f2f4f6;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px 20px;
}

.respd-body .toc-filter h3 {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #007c8a;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.respd-body .toc-filter ol {
  gap: 4px;
  margin: 0 0 0 16px;
}

.respd-body .toc-filter a {
  color: #007c8a;
  font-size: 13px;
  text-decoration: none;
}

.respd-body .toc-filter a:hover {
  text-decoration: underline;
}

.respd-body .block-adsense-within-node, .respd-body .adsbygoogle {
  display: none;
}

.respd-sidebar {
  flex-direction: column;
  gap: 28px;
  display: flex;
  position: sticky;
  top: 84px;
}

.respd-widget-see-all {
  color: #007c8a;
  border-top: 1px solid #0a162817;
  padding: 10px 0 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
  display: block;
}

.respd-widget-see-all:hover {
  color: #005f6b;
}

.respd-related {
  margin-top: 48px;
}

.respd-related-header {
  border-bottom: 2px solid #0a1628;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  display: flex;
}

.respd-related-header h2 {
  font-family: var(--font-display);
  color: #0a1628;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.respd-related-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.respd-related-card {
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.respd-related-card:hover {
  opacity: .85;
}

.respd-related-img {
  aspect-ratio: 300 / 165;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.respd-related-img-placeholder {
  aspect-ratio: 300 / 165;
  color: #007c8a;
  background: linear-gradient(135deg, #e8f5f7, #f0faff);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 24px;
  font-weight: 900;
  display: flex;
}

.respd-related-title {
  font-family: var(--font-display);
  color: #0a1628;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  transition: color .15s;
}

.respd-related-card:hover .respd-related-title {
  color: #007c8a;
}

@media (max-width: 1024px) {
  .respd-layout {
    grid-template-columns: 1fr 280px;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .respd-layout {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 24px 16px 60px;
  }

  .respd-sidebar {
    position: static;
  }

  .respd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .respd-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .respd-related-grid {
    grid-template-columns: 1fr;
  }

  .respd-title {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=src_app_respuestas_%5Bslug%5D_respuesta-detail_e45b1714.css.map*/