:root {
/* Otras propiedades */
  --blog-bg: #030520;
  --blog-surface: rgba(10, 22, 80, 0.6);
  --blog-surface-hover: rgba(10, 22, 80, 0.85);
  --blog-border: rgba(40, 69, 214, 0.18);
  --blog-border-hover: rgba(246, 128, 72, 0.6);
  --blog-accent: #F68048;
  --blog-accent-light: #FF9A6C;
  --blog-blue: #2845D6;
  --blog-blue-light: #4A6BFF;
  --blog-text: #eef0f7;
  --blog-text-muted: #B0BBE0;
  --blog-radius: 16px;
  --blog-radius-sm: 10px;
  --blog-max-width: 1200px;
  --blog-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);}

.blog-hero {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Relleno */
  padding: 80px 24px 48px;

  /* Fondos */
  background: linear-gradient(180deg, #020418 0%, var(--blog-bg) 100%);

  /* Tipografía */
  text-align: center;}

.blog-hero::before {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 50%;

  /* Dimensiones */
  width: 600px;
  height: 600px;

  /* Fondos */
  background: radial-gradient(circle, rgba(246, 128, 72, 0.06) 0%, transparent 70%);

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  content: '';
  transform: translateX(-50%);}

.blog-hero::after {
/* Posicionamiento */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  /* Dimensiones */
  height: 1px;

  /* Fondos */
  background: linear-gradient(90deg, transparent, rgba(40, 69, 214, 0.3), var(--blog-accent), rgba(40, 69, 214, 0.3), transparent);

  /* Otras propiedades */
  content: '';}

.blog-hero__container {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Dimensiones */
  max-width: 700px;

  /* Márgenes */
  margin: 0 auto;}

.blog-hero__back {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 6px;

  /* Márgenes */
  margin-bottom: 28px;

  /* Relleno */
  padding: 6px 14px;

  /* Bordes */
  border-radius: 20px;
  border: 1px solid rgba(246, 128, 72, 0.15);

  /* Fondos */
  background: rgba(246, 128, 72, 0.08);

  /* Tipografía */
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Transiciones y animaciones */
  transition: all 0.25s ease;}

.blog-hero__back:hover {
/* Bordes */
  border-color: rgba(246, 128, 72, 0.35);

  /* Fondos */
  background: rgba(246, 128, 72, 0.15);

  /* Otras propiedades */
  transform: translateX(-3px);}

.blog-hero__title {
/* Márgenes */
  margin-bottom: 10px;

  /* Tipografía */
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1;

  /* Colores y efectos */
  color: #fff;

  /* Otras propiedades */
  letter-spacing: -0.03em;}

.blog-hero__dot {
/* Colores y efectos */
  color: var(--blog-accent);}

.blog-hero__subtitle {
/* Márgenes */
  margin-bottom: 10px;

  /* Tipografía */
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 600;
  font-style: italic;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.9);}

.blog-hero__desc {
/* Dimensiones */
  max-width: 560px;

  /* Márgenes */
  margin: 0 auto;

  /* Tipografía */
  font-size: 0.95rem;
  line-height: 1.5;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-cats {
/* Posicionamiento */
  position: sticky;
  top: 0;
  z-index: 100;

  /* Bordes */
  border-bottom: 1px solid var(--blog-border);

  /* Fondos */
  background: rgba(3, 5, 32, 0.92);

  /* Otras propiedades */
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);}

.blog-cats__container {
/* Dimensiones */
  max-width: var(--blog-max-width);

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 0 24px;}

.blog-cats__scroll {
/* Modelo de caja */
  display: flex;
  overflow-x: auto;

  /* Flexbox y Grid */
  gap: 6px;

  /* Relleno */
  padding: 14px 0;

  /* Otras propiedades */
  scrollbar-width: none;
  -ms-overflow-style: none;}

.blog-cats__scroll::-webkit-scrollbar {
/* Modelo de caja */
  display: none;}

.blog-cats__item {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  align-items: center;
  gap: 5px;

  /* Dimensiones */
  min-width: 76px;

  /* Relleno */
  padding: 10px 14px;

  /* Bordes */
  border: 1.5px solid transparent;
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: none;

  /* Tipografía */
  font-size: 0.74rem;
  font-weight: 500;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Transiciones y animaciones */
  transition: all 0.25s ease;

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  white-space: nowrap;}

.blog-cats__item:hover {
/* Bordes */
  border-color: rgba(40, 69, 214, 0.25);

  /* Fondos */
  background: rgba(40, 69, 214, 0.1);

  /* Colores y efectos */
  color: #fff;}

.blog-cats__item.active {
/* Bordes */
  border-color: var(--blog-accent);

  /* Fondos */
  background: rgba(246, 128, 72, 0.1);

  /* Colores y efectos */
  color: var(--blog-accent);
  box-shadow: 0 0 12px rgba(246, 128, 72, 0.1);}

.blog-cats__icon {
/* Tipografía */
  font-size: 1.4rem;
  line-height: 1;}

.blog-cats__label {
/* Tipografía */
  font-size: 0.68rem;
  text-transform: uppercase;

  /* Otras propiedades */
  letter-spacing: 0.5px;}

.blog-section-title {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: inline-block;

  /* Márgenes */
  margin-bottom: 28px;

  /* Tipografía */
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;

  /* Colores y efectos */
  color: #fff;}

.blog-section-title::after {
/* Posicionamiento */
  position: absolute;
  bottom: -8px;
  left: 0;

  /* Dimensiones */
  width: 48px;
  height: 3px;

  /* Bordes */
  border-radius: 3px;

  /* Fondos */
  background: linear-gradient(90deg, var(--blog-accent), transparent);

  /* Otras propiedades */
  content: '';}

.blog-featured {
/* Relleno */
  padding: 48px 24px 24px;}

.blog-featured__container {
/* Dimensiones */
  max-width: var(--blog-max-width);

  /* Márgenes */
  margin: 0 auto;}

.blog-featured__grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 20px;

  /* Dimensiones */
  min-height: 420px;

  /* Otras propiedades */
  grid-template-columns: 1fr 1fr;}

.blog-featured__main, .blog-featured__side-item {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;
  display: block;

  /* Bordes */
  border-radius: var(--blog-radius);
  border: 1px solid var(--blog-border);

  /* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: transform var(--blog-transition), box-shadow var(--blog-transition), border-color var(--blog-transition);}

.blog-featured__main:hover, .blog-featured__side-item:hover {
/* Bordes */
  border-color: var(--blog-border-hover);

  /* Colores y efectos */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(246, 128, 72, 0.08);

  /* Otras propiedades */
  transform: translateY(-5px);}

.blog-featured__main {
/* Otras propiedades */
  grid-row: 1 / 2;}

.blog-featured__side {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: 20px;}

.blog-featured__side-item {
/* Flexbox y Grid */
  flex: 1;}

.blog-featured__img {
/* Posicionamiento */
  position: absolute;
  z-index: 0;

  /* Otras propiedades */
  inset: 0;}

.blog-featured__img img {
/* Dimensiones */
  width: 100%;
  height: 100%;

  /* Transiciones y animaciones */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Otras propiedades */
  object-fit: cover;}

.blog-featured__main:hover .blog-featured__img img, .blog-featured__side-item:hover .blog-featured__img img {
/* Otras propiedades */
  transform: scale(1.06);}

.blog-featured__placeholder {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Fondos */
  background: linear-gradient(135deg, #0A1650 0%, #1a2980 100%);

  /* Tipografía */
  font-size: 4rem;

  /* Colores y efectos */
  opacity: 0.5;}

.blog-featured__overlay {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  justify-content: flex-end;

  /* Dimensiones */
  height: 100%;
  min-height: 180px;

  /* Relleno */
  padding: 28px;

  /* Fondos */
  background: linear-gradient(to top, rgba(3, 5, 32, 0.97) 0%, rgba(3, 5, 32, 0.65) 35%, transparent 100%);}

.blog-featured__main .blog-featured__overlay {
/* Dimensiones */
  min-height: 400px;}

.blog-featured__cat {
/* Modelo de caja */
  display: inline-block;

  /* Dimensiones */
  width: fit-content;

  /* Márgenes */
  margin-bottom: 12px;

  /* Relleno */
  padding: 5px 14px;

  /* Bordes */
  border-radius: 6px;

  /* Fondos */
  background: var(--blog-accent);

  /* Tipografía */
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 2px 8px rgba(246, 128, 72, 0.3);

  /* Otras propiedades */
  letter-spacing: 0.6px;}

.blog-featured__title {
/* Márgenes */
  margin-bottom: 10px;

  /* Tipografía */
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;

  /* Colores y efectos */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);}

.blog-featured__main .blog-featured__title {
/* Tipografía */
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);}

.blog-featured__meta {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 6px;

  /* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.65);}

.blog-toolbar {
/* Relleno */
  padding: 40px 24px 0;}

.blog-toolbar__container {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;

  /* Dimensiones */
  max-width: var(--blog-max-width);

  /* Márgenes */
  margin: 0 auto;}

.blog-toolbar__right {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;}

.blog-toolbar__search {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;}

.blog-toolbar__search-icon {
/* Posicionamiento */
  position: absolute;
  left: 14px;

  /* Colores y efectos */
  color: var(--blog-text-muted);
  opacity: 0.7;

  /* Interactividad */
  pointer-events: none;}

.blog-toolbar__search input {
/* Dimensiones */
  width: 260px;

  /* Relleno */
  padding: 11px 16px 11px 40px;

  /* Bordes */
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: var(--blog-surface);

  /* Tipografía */
  font-size: 0.9rem;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;}

.blog-toolbar__search input:focus {
/* Bordes */
  border-color: var(--blog-accent);

  /* Fondos */
  background: var(--blog-surface-hover);

  /* Colores y efectos */
  box-shadow: 0 0 0 3px rgba(246, 128, 72, 0.12), 0 4px 16px rgba(0, 0, 0, 0.2);

  /* Otras propiedades */
  outline: none;}

.blog-toolbar__search input::placeholder {
/* Colores y efectos */
  color: rgba(176, 187, 224, 0.5);}

.blog-toolbar__sort select {
/* Relleno */
  padding: 11px 38px 11px 16px;

  /* Bordes */
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: var(--blog-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B0BBE0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;

  /* Tipografía */
  font-size: 0.9rem;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: border-color 0.25s, box-shadow 0.25s;

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  appearance: none;
  -webkit-appearance: none;}

.blog-toolbar__sort select:focus {
/* Bordes */
  border-color: var(--blog-accent);

  /* Colores y efectos */
  box-shadow: 0 0 0 3px rgba(246, 128, 72, 0.12);

  /* Otras propiedades */
  outline: none;}

.blog-grid-section {
/* Relleno */
  padding: 28px 24px 72px;}

.blog-grid-section__container {
/* Dimensiones */
  max-width: var(--blog-max-width);

  /* Márgenes */
  margin: 0 auto;}

.blog-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 24px;

  /* Otras propiedades */
  grid-template-columns: repeat(3, 1fr);}

.blog-card {
/* Modelo de caja */
  overflow: hidden;

  /* Bordes */
  border-radius: var(--blog-radius);
  border: 1px solid var(--blog-border);

  /* Fondos */
  background: var(--blog-surface);

  /* Colores y efectos */
  opacity: 1;

  /* Transiciones y animaciones */
  transition: transform var(--blog-transition), border-color var(--blog-transition), box-shadow var(--blog-transition);

  /* Otras propiedades */
  transform: translateY(0);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);}

.blog-card--animate {
/* Transiciones y animaciones */
  animation: blogCardIn 0.45s ease forwards;}

.blog-card:hover {
/* Bordes */
  border-color: var(--blog-border-hover);

  /* Colores y efectos */
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(246, 128, 72, 0.06);

  /* Otras propiedades */
  transform: translateY(-6px);}

.blog-card__link {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;

  /* Dimensiones */
  height: 100%;

  /* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: inherit;}

.blog-card__img {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  height: 210px;

  /* Fondos */
  background: linear-gradient(135deg, #0A1650 0%, #1a2980 100%);}

.blog-card__img img {
/* Dimensiones */
  width: 100%;
  height: 100%;

  /* Transiciones y animaciones */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Otras propiedades */
  object-fit: cover;}

.blog-card:hover .blog-card__img img {
/* Otras propiedades */
  transform: scale(1.07);}

.blog-card__img--placeholder {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Tipografía */
  font-size: 3rem;

  /* Colores y efectos */
  opacity: 0.4;}

.blog-card__body {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  flex: 1;

  /* Relleno */
  padding: 22px;}

.blog-card__cat {
/* Modelo de caja */
  display: inline-block;

  /* Dimensiones */
  width: fit-content;

  /* Márgenes */
  margin-bottom: 10px;

  /* Relleno */
  padding: 4px 12px;

  /* Bordes */
  border-radius: 6px;

  /* Fondos */
  background: rgba(246, 128, 72, 0.12);

  /* Tipografía */
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Otras propiedades */
  letter-spacing: 0.5px;}

.blog-card__title {
/* Modelo de caja */
  display: -webkit-box;
  overflow: hidden;

  /* Márgenes */
  margin-bottom: 10px;

  /* Tipografía */
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: color 0.2s;

  /* Otras propiedades */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;}

.blog-card:hover .blog-card__title {
/* Colores y efectos */
  color: var(--blog-accent-light);}

.blog-card__excerpt {
/* Modelo de caja */
  display: -webkit-box;
  overflow: hidden;

  /* Flexbox y Grid */
  flex: 1;

  /* Márgenes */
  margin-bottom: 16px;

  /* Tipografía */
  font-size: 0.87rem;
  line-height: 1.55;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Otras propiedades */
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;}

.blog-card__footer {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 8px;

  /* Márgenes */
  margin-top: auto;

  /* Relleno */
  padding-top: 14px;

  /* Bordes */
  border-top: 1px solid var(--blog-border);

  /* Tipografía */
  font-size: 0.78rem;

  /* Colores y efectos */
  color: rgba(176, 187, 224, 0.65);}

.blog-card__author {
/* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.8);}

.blog-empty-state {
/* Relleno */
  padding: 80px 20px;

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Otras propiedades */
  grid-column: 1 / -1;}

.blog-empty-state__icon {
/* Modelo de caja */
  display: block;

  /* Márgenes */
  margin-bottom: 16px;

  /* Tipografía */
  font-size: 3.5rem;}

.blog-empty-state h3 {
/* Márgenes */
  margin-bottom: 8px;

  /* Tipografía */
  font-size: 1.3rem;

  /* Colores y efectos */
  color: #fff;}

.blog-loading {
/* Relleno */
  padding: 80px 20px;

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Otras propiedades */
  grid-column: 1 / -1;}

.blog-loading__spinner {
/* Dimensiones */
  width: 42px;
  height: 42px;

  /* Márgenes */
  margin: 0 auto 16px;

  /* Bordes */
  border: 3px solid rgba(40, 69, 214, 0.15);
  border-radius: 50%;

  /* Transiciones y animaciones */
  animation: blogSpin 0.75s linear infinite;

  /* Otras propiedades */
  border-top-color: var(--blog-accent);}

.blog-pagination {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 8px;
  justify-content: center;

  /* Relleno */
  padding: 40px 0 0;}

.blog-pag__btn {
/* Relleno */
  padding: 10px 18px;

  /* Bordes */
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: var(--blog-surface);

  /* Tipografía */
  font-size: 0.88rem;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: all 0.25s;

  /* Interactividad */
  cursor: pointer;}

.blog-pag__btn:hover {
/* Bordes */
  border-color: var(--blog-accent);

  /* Fondos */
  background: rgba(246, 128, 72, 0.1);

  /* Otras propiedades */
  transform: translateY(-2px);}

.blog-pag__btn--active {
/* Bordes */
  border-color: var(--blog-accent);

  /* Fondos */
  background: var(--blog-accent);

  /* Tipografía */
  font-weight: 700;

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 128, 72, 0.3);}

.blog-single {
/* Dimensiones */
  max-width: 820px;
  min-height: 100vh;

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 40px 24px 80px;}

.blog-single__error {
/* Relleno */
  padding: 120px 20px;

  /* Tipografía */
  text-align: center;}

.blog-single__error h2 {
/* Márgenes */
  margin-bottom: 12px;

  /* Tipografía */
  font-size: 1.6rem;

  /* Colores y efectos */
  color: #fff;}

.blog-single__error p {
/* Márgenes */
  margin-bottom: 28px;

  /* Tipografía */
  font-size: 1.05rem;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-single__nav {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

  /* Relleno */
  padding: 24px 0;

  /* Tipografía */
  font-size: 0.85rem;}

.blog-single__nav-link {
/* Tipografía */
  text-decoration: none;
  font-weight: 500;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Transiciones y animaciones */
  transition: opacity 0.2s;}

.blog-single__nav-link:hover {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  opacity: 0.85;}

.blog-single__nav-sep {
/* Colores y efectos */
  color: rgba(176, 187, 224, 0.3);}

.blog-single__nav-current {
/* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  max-width: 340px;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Otras propiedades */
  text-overflow: ellipsis;
  white-space: nowrap;}

.blog-single__header {
/* Márgenes */
  margin-bottom: 40px;}

.blog-single__cat {
/* Modelo de caja */
  display: inline-block;

  /* Márgenes */
  margin-bottom: 16px;

  /* Relleno */
  padding: 6px 16px;

  /* Bordes */
  border-radius: 6px;
  border: 1px solid rgba(246, 128, 72, 0.2);

  /* Fondos */
  background: rgba(246, 128, 72, 0.12);

  /* Tipografía */
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Otras propiedades */
  letter-spacing: 0.6px;}

.blog-single__title {
/* Márgenes */
  margin-bottom: 24px;

  /* Tipografía */
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;

  /* Colores y efectos */
  color: #fff;

  /* Otras propiedades */
  letter-spacing: -0.025em;}

.blog-single__meta {
/* Márgenes */
  margin-bottom: 0;}

.blog-single__author-info {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 14px;

  /* Relleno */
  padding: 16px 20px;

  /* Bordes */
  border-radius: var(--blog-radius-sm);
  border: 1px solid var(--blog-border);

  /* Fondos */
  background: var(--blog-surface);}

.blog-single__avatar {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 48px;
  height: 48px;
  min-width: 48px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: linear-gradient(135deg, var(--blog-blue), var(--blog-accent));

  /* Tipografía */
  font-weight: 800;
  font-size: 0.95rem;

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 4px 12px rgba(246, 128, 72, 0.2);}

.blog-single__author-info strong {
/* Modelo de caja */
  display: block;

  /* Márgenes */
  margin-bottom: 2px;

  /* Tipografía */
  font-size: 0.95rem;

  /* Colores y efectos */
  color: #fff;}

.blog-single__date {
/* Tipografía */
  font-size: 0.84rem;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-single__hero-img {
/* Modelo de caja */
  overflow: hidden;

  /* Márgenes */
  margin: 0 0 40px;

  /* Bordes */
  border-radius: var(--blog-radius);
  border: 1px solid var(--blog-border);

  /* Colores y efectos */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);}

.blog-single__hero-img img {
/* Modelo de caja */
  display: block;

  /* Dimensiones */
  width: 100%;
  height: auto;
  max-height: 500px;

  /* Otras propiedades */
  object-fit: cover;}

.blog-single__content {
/* Tipografía */
  font-size: 1.08rem;
  line-height: 1.85;

  /* Colores y efectos */
  color: var(--blog-text);

  /* Otras propiedades */
  word-break: break-word;}

.blog-single__content h2 {
/* Márgenes */
  margin: 48px 0 20px;

  /* Relleno */
  padding-bottom: 12px;

  /* Bordes */
  border-bottom: 2px solid rgba(246, 128, 72, 0.15);

  /* Tipografía */
  font-size: 1.55rem;
  font-weight: 800;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Otras propiedades */
  letter-spacing: -0.01em;}

.blog-single__content h3 {
/* Márgenes */
  margin: 36px 0 14px;

  /* Tipografía */
  font-size: 1.25rem;
  font-weight: 700;

  /* Colores y efectos */
  color: var(--blog-blue-light);}

.blog-single__content h4 {
/* Márgenes */
  margin: 28px 0 12px;

  /* Tipografía */
  font-size: 1.1rem;
  font-weight: 600;

  /* Colores y efectos */
  color: #fff;}

.blog-single__content p {
/* Márgenes */
  margin-bottom: 18px;}

.blog-single__content ul, .blog-single__content ol {
/* Márgenes */
  margin: 12px 0 20px 0;

  /* Relleno */
  padding-left: 0;}

.blog-single__content ul {
/* Otras propiedades */
  list-style: none;}

.blog-single__content ul li {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin-bottom: 12px;

  /* Relleno */
  padding-left: 24px;}

.blog-single__content ul li::before {
/* Posicionamiento */
  position: absolute;
  left: 6px;
  top: 10px;

  /* Dimensiones */
  width: 6px;
  height: 6px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: var(--blog-accent);

  /* Otras propiedades */
  content: '';}

.blog-single__content ol {
/* Relleno */
  padding-left: 24px;}

.blog-single__content ol li {
/* Márgenes */
  margin-bottom: 12px;

  /* Relleno */
  padding-left: 6px;}

.blog-single__content ol li::marker {
/* Tipografía */
  font-weight: 700;

  /* Colores y efectos */
  color: var(--blog-accent);}

.blog-single__content a {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  color: var(--blog-accent-light);

  /* Transiciones y animaciones */
  transition: text-decoration-color 0.2s;

  /* Otras propiedades */
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 154, 108, 0.3);}

.blog-single__content a:hover {
/* Otras propiedades */
  text-decoration-color: var(--blog-accent-light);}

.blog-single__content strong {
/* Tipografía */
  font-weight: 700;

  /* Colores y efectos */
  color: #fff;}

.blog-single__content em {
/* Colores y efectos */
  color: rgba(238, 240, 247, 0.9);}

.blog-single__content blockquote {
/* Márgenes */
  margin: 24px 0;

  /* Relleno */
  padding: 20px 24px;

  /* Bordes */
  border-left: 4px solid var(--blog-accent);
  border-radius: 0 var(--blog-radius-sm) var(--blog-radius-sm) 0;

  /* Fondos */
  background: rgba(246, 128, 72, 0.05);

  /* Tipografía */
  font-style: italic;

  /* Colores y efectos */
  color: rgba(238, 240, 247, 0.9);}

.blog-single__content blockquote p:last-child {
/* Márgenes */
  margin-bottom: 0;}

.blog-single__content code {
/* Relleno */
  padding: 3px 8px;

  /* Bordes */
  border-radius: 5px;

  /* Fondos */
  background: rgba(40, 69, 214, 0.15);

  /* Tipografía */
  font-size: 0.88em;
  font-family: 'Fira Code', 'Cascadia Code', 'JetBrains Mono', monospace;

  /* Colores y efectos */
  color: var(--blog-accent-light);}

.blog-single__content pre {
/* Modelo de caja */
  overflow-x: auto;

  /* Márgenes */
  margin: 20px 0;

  /* Relleno */
  padding: 20px 24px;

  /* Bordes */
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: #020418;

  /* Colores y efectos */
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);}

.blog-single__content pre code {
/* Relleno */
  padding: 0;

  /* Fondos */
  background: none;

  /* Tipografía */
  font-size: 0.88rem;
  line-height: 1.65;

  /* Colores y efectos */
  color: var(--blog-text);}

.blog-single__content img {
/* Modelo de caja */
  display: block;

  /* Dimensiones */
  max-width: 100%;
  height: auto;

  /* Márgenes */
  margin: 28px auto;

  /* Bordes */
  border-radius: var(--blog-radius-sm);
  border: 1px solid var(--blog-border);

  /* Colores y efectos */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);}

.blog-single__content figure {
/* Márgenes */
  margin: 28px 0;}

.blog-single__content figcaption {
/* Márgenes */
  margin-top: 8px;

  /* Tipografía */
  font-size: 0.85rem;
  text-align: center;
  font-style: italic;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-single__content table {
/* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  width: 100%;

  /* Márgenes */
  margin: 20px 0;

  /* Bordes */
  border-radius: var(--blog-radius-sm);
  border: 1px solid var(--blog-border);

  /* Otras propiedades */
  border-collapse: collapse;}

.blog-single__content th {
/* Relleno */
  padding: 12px 16px;

  /* Fondos */
  background: rgba(40, 69, 214, 0.15);

  /* Tipografía */
  font-weight: 700;
  text-align: left;
  font-size: 0.9rem;

  /* Colores y efectos */
  color: #fff;}

.blog-single__content td {
/* Relleno */
  padding: 10px 16px;

  /* Bordes */
  border-top: 1px solid var(--blog-border);

  /* Tipografía */
  font-size: 0.9rem;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-single__content tr:hover td {
/* Fondos */
  background: rgba(40, 69, 214, 0.05);}

.blog-single__content hr {
/* Dimensiones */
  height: 1px;

  /* Márgenes */
  margin: 40px 0;

  /* Bordes */
  border: none;

  /* Fondos */
  background: linear-gradient(90deg, transparent, var(--blog-border), var(--blog-accent), var(--blog-border), transparent);}

.blog-single__tags {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 10px;
  flex-wrap: wrap;

  /* Márgenes */
  margin-top: 40px;

  /* Relleno */
  padding-top: 28px;

  /* Bordes */
  border-top: 1px solid var(--blog-border);}

.blog-single__tag {
/* Relleno */
  padding: 6px 16px;

  /* Bordes */
  border: 1px solid var(--blog-border);
  border-radius: 24px;

  /* Fondos */
  background: rgba(40, 69, 214, 0.08);

  /* Tipografía */
  font-size: 0.82rem;
  font-weight: 500;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Transiciones y animaciones */
  transition: all 0.25s;

  /* Interactividad */
  cursor: default;}

.blog-single__tag:hover {
/* Bordes */
  border-color: var(--blog-accent);

  /* Fondos */
  background: rgba(246, 128, 72, 0.08);

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Otras propiedades */
  transform: translateY(-2px);}

.blog-single__footer {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;

  /* Márgenes */
  margin-top: 56px;

  /* Relleno */
  padding-top: 28px;

  /* Bordes */
  border-top: 1px solid var(--blog-border);}

.blog-single__back-btn {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 8px;

  /* Relleno */
  padding: 13px 28px;

  /* Bordes */
  border: 1.5px solid var(--blog-accent);
  border-radius: var(--blog-radius-sm);

  /* Fondos */
  background: transparent;

  /* Tipografía */
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;

  /* Colores y efectos */
  color: var(--blog-accent);

  /* Transiciones y animaciones */
  transition: all 0.3s;}

.blog-single__back-btn:hover {
/* Fondos */
  background: var(--blog-accent);

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 6px 20px rgba(246, 128, 72, 0.25);

  /* Otras propiedades */
  transform: translateX(-4px);}

.blog-single__share {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 12px;}

.blog-single__share-label {
/* Tipografía */
  font-size: 0.85rem;
  font-weight: 500;

  /* Colores y efectos */
  color: var(--blog-text-muted);}

.blog-single__share-btn {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 40px;
  height: 40px;

  /* Bordes */
  border-radius: 50%;
  border: 1px solid var(--blog-border);

  /* Fondos */
  background: var(--blog-surface);

  /* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: var(--blog-text-muted);

  /* Transiciones y animaciones */
  transition: all 0.25s;

  /* Interactividad */
  cursor: pointer;}

.blog-single__share-btn:hover {
/* Bordes */
  border-color: var(--blog-accent);

  /* Colores y efectos */
  color: var(--blog-accent);
  box-shadow: 0 4px 12px rgba(246, 128, 72, 0.15);

  /* Otras propiedades */
  transform: translateY(-3px);}

.blog-single__share-btn svg {
/* Dimensiones */
  width: 18px;
  height: 18px;

  /* Otras propiedades */
  fill: currentColor;}

.visually-hidden {
/* Posicionamiento */
  position: absolute;

  /* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  width: 1px;
  height: 1px;

  /* Márgenes */
  margin: -1px;

  /* Relleno */
  padding: 0;

  /* Bordes */
  border: 0;

  /* Otras propiedades */
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;}

.blog-card:focus-visible, .blog-featured__main:focus-visible, .blog-featured__side-item:focus-visible, .blog-cats__item:focus-visible, .blog-pag__btn:focus-visible {
/* Otras propiedades */
  outline: 2px solid var(--blog-accent);
  outline-offset: 2px;}

html:has(#blogListView) {
/* Otras propiedades */
  scroll-behavior: smooth;}

#blogListView ::selection, #blogPostView ::selection {
/* Fondos */
  background: rgba(246, 128, 72, 0.3);

  /* Colores y efectos */
  color: #fff;}