/* =========================================================
   BLOG SHARED LAYOUT
   Contenedores comunes del dominio blog
   ========================================================= */

.cfv-blog-margin__content {
  width: 80%;
  max-width: 1080px;
  margin: 20px auto;
}

/* =========================================================
   BLOG ARCHIVE CRITICAL
   Estructura principal del listado y hero del blog
   ========================================================= */

.cfv-blog-archive {
  width: 100%;
  margin: 0 auto;
}

.cfv-blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cfv-blog-archive__empty {
  grid-column: 1 / -1;
  padding: 32px 24px;
  border-radius: 22px;
  background: #fff7f2;
  text-align: center;
}

.cfv-blog-archive__empty-text {
  margin: 0;
  color: #7c2d12;
  font-size: 16px;
  font-weight: 700;
}

.cfv-blog-archive-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin-bottom: 40px;
  background: #1d0f3d;
}

.cfv-blog-archive-hero__media,
.cfv-blog-archive-hero__overlay,
.cfv-blog-archive-hero__content {
  position: absolute;
  inset: 0;
}

.cfv-blog-archive-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.cfv-blog-archive-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfv-blog-archive-hero__overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 164, 255, 0.65) 0%, rgba(176, 164, 255, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.cfv-blog-archive-hero__content {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.cfv-blog-archive-hero__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.cfv-blog-archive-hero__logo {
  display: block;
  width: clamp(42px, 4vw, 63px);
  height: auto;
  flex-shrink: 0;
}

.cfv-blog-archive-hero__title {
  margin: 0;
  color: #0084c6;
  font-family: Inter;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* =========================================================
   BLOG SINGLE CRITICAL
   Estructura principal del single y hero del post
   ========================================================= */

.cfv-blog-single {
  width: 100%;
  margin: 0 auto;
  color: #1f2937;
}

.cfv-blog-single__header {
  margin-bottom: 50px;
}

.cfv-blog-single__hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #1d0f3d;
}

.cfv-blog-single__hero--fallback {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #2a0d4d 0%, #3d1264 55%, #4b1677 100%);
}

.cfv-blog-single__hero-media,
.cfv-blog-single__hero-overlay,
.cfv-blog-single__hero-content {
  position: absolute;
  inset: 0;
}

.cfv-blog-single__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfv-blog-single__hero-overlay {
  background: linear-gradient(180deg, rgba(36, 13, 68, 0) 0%, #240d44 80.77%);
  pointer-events: none;
}

.cfv-blog-single__hero-content {
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
  padding: 30px 0;
}

.cfv-blog-single__title {
  width: 745px;
  min-width: 745px;
  height: 102px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  line-height: 103%;
  letter-spacing: 0%;
  text-overflow: ellipsis;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cfv-blog-single__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  flex-direction: row-reverse;
}

.cfv-blog-single__author-avatar {
  flex-shrink: 0;
}

.cfv-blog-single__author-avatar img {
  display: block;
  width: 55px;
  height: 55px;
  border: 3px solid #0084c6;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.cfv-blog-single__author-name {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0%;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   BLOG CARDS
   Cards del archive y tarjetas relacionadas
   ========================================================= */

.cfv-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 11.03px 0 #0000002b;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cfv-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.cfv-blog-card__thumb {
  display: block;
  width: 100%;
  height: 190px;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
}

.cfv-blog-card__thumb img,
.cfv-blog-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfv-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 185px;
  padding: 12px;
}

.cfv-blog-card__title {
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
  padding: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cfv-blog-card__title a {
  color: #f26a1b;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cfv-blog-card__excerpt {
  margin-bottom: 22px;
  color: rgba(20, 20, 20, 0.55);
  font-size: 14px;
  line-height: normal;
}

.cfv-blog-card__excerpt p {
  display: -webkit-box;
  width: 100%;
  height: 50px;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cfv-blog-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  min-height: 36px;
}

.cfv-blog-card__author {
  display: flex;
  flex: 1 1 calc(50% - 6px);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cfv-blog-card__avatar img {
  display: block;
  width: 36px;
  height: auto;
  border-radius: 999px;
}

.cfv-blog-card__author-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  gap: 4px;
}

.cfv-blog-card__author-first-name,
.cfv-blog-card__author-last-name {
  overflow: hidden;
  color: #f26a1b;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
}

.cfv-blog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(50% - 6px);
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b79c9;
  box-shadow: 0 10px 18px rgba(11, 121, 201, 0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  height: 33px;
}

.cfv-blog-card__button-label {
  font-size: 14px;
  line-height: 1;
}

.cfv-blog-card__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.cfv-blog-card__button-icon {
  display: inline-flex;
  flex: 0 1 24px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
}

.cfv-blog-related {
  --cfv-related-gap: 24px;
  margin: 0;
  background: #fafafa;
  padding-top: 15px;
  padding-bottom: 100px;
}

.cfv-blog-related__header {
  margin-bottom: 18px;
}

.cfv-blog-related__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cfv-blog-related__title-accent {
  color: #0b5f93;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cfv-blog-related__viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.cfv-blog-related__viewport::-webkit-scrollbar {
  display: none;
}

.cfv-blog-related__track {
  display: flex;
  gap: var(--cfv-related-gap);
}

.cfv-blog-related__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - (var(--cfv-related-gap) * 2)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.cfv-blog-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cfv-blog-related-card:hover {
  transform: translateY(-2px);
}

.cfv-blog-related-card__thumb {
  display: block;
  width: 100%;
  height: 190px;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
}

.cfv-blog-related-card__thumb img,
.cfv-blog-related-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cfv-blog-related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 185px;
  padding: 12px;
}

.cfv-blog-related-card__title {
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
  padding: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cfv-blog-related-card__title a {
  color: #f26a1b;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cfv-blog-related-card__excerpt {
  margin-bottom: 22px;
  color: rgba(20, 20, 20, 0.55);
  font-size: 14px;
  line-height: normal;
}

.cfv-blog-related-card__excerpt p {
  display: -webkit-box;
  width: 100%;
  height: 50px;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cfv-blog-related-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: auto;
  height: 36px;
}

.cfv-blog-related-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cfv-blog-related-card__avatar img {
  display: block;
  width: 36px;
  height: auto;
  border-radius: 999px;
}

.cfv-blog-related-card__author-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 90px;
  gap: 4px;
}

.cfv-blog-related-card__author-first-name,
.cfv-blog-related-card__author-last-name {
  overflow: hidden;
  color: #f26a1b;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
}

.cfv-blog-related-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 150px;
  height: 33px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0b79c9;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.cfv-blog-related-card__button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.cfv-blog-related-card__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
}

/* =========================================================
   BLOG CONTENT
   Tipografia y contenido enriquecido del single
   ========================================================= */

.cfv-blog-single__featured {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.cfv-blog-single__featured img {
  display: block;
  width: 100%;
  height: auto;
}

.cfv-blog-single__content>*:first-child {
  margin-top: 0;
}

.cfv-blog-single__content>*:last-child {
  margin-bottom: 0;
}

.cfv-blog-single__content h2,
.cfv-blog-single__content h3,
.cfv-blog-single__content h4 {
  margin: 1.8em 0 0.6em;
  color: #111827;
  font-weight: 800;
  line-height: 1.2;
}

.cfv-blog-single__content h2 {
  font-size: clamp(28px, 3.2vw, 36px);
}

.cfv-blog-single__content h3 {
  font-size: clamp(24px, 2.6vw, 30px);
}

.cfv-blog-single__content p,
.cfv-blog-single__content ul,
.cfv-blog-single__content ol,
.cfv-blog-single__content blockquote {
  margin: 0 0 1.2em;
}

.cfv-blog-single__content a {
  color: #0b79c9;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cfv-blog-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.cfv-blog-single__content blockquote {
  padding: 18px 20px;
  border-left: 4px solid #f26a1b;
  border-radius: 0 16px 16px 0;
  background: #fff7f2;
  color: #374151;
}

/* =========================================================
   BLOG NON-CRITICAL UI
   Paginacion, share y UI secundaria del dominio blog
   ========================================================= */

.cfv-blog-archive__pagination {
  margin-top: 36px;
}

.cfv-blog-archive__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cfv-blog-archive__pagination .page-numbers {
  justify-content: center;
  align-items: center;
}

.cfv-blog-archive__pagination li {
  margin: 0;
}

.cfv-blog-archive__pagination a,
.cfv-blog-archive__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(0, 132, 198, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #0b79c9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(11, 121, 201, 0.08);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cfv-blog-archive__pagination a:hover,
.cfv-blog-archive__pagination a:focus-visible {
  border-color: #0b79c9;
  background: #eef8ff;
  color: #0b79c9;
  box-shadow: 0 10px 20px rgba(11, 121, 201, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.cfv-blog-archive__pagination .current {
  border-color: #0b79c9;
  background: #0b79c9;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(11, 121, 201, 0.22);
}

.cfv-blog-archive__pagination .dots {
  min-width: auto;
  padding-inline: 4px;
  border-color: transparent;
  background: transparent;
  color: rgba(29, 15, 61, 0.5);
  box-shadow: none;
}

.cfv-blog-archive__pagination .prev,
.cfv-blog-archive__pagination .next {
  padding-inline: 18px;
}

.cfv-blog-single__actions {
  margin: 40px auto;
}

.cfv-blog-single__actions-inner {
  display: flex;
  justify-content: flex-end;
}

.cfv-blog-single__share-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 145px;
  height: 32px;
  padding: 7px 12px;
  border: 0;
  border-radius: 28.58px;
  background: #ff6b35;
  box-shadow: 0 1.94px 3.73px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.cfv-blog-single__share-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.cfv-blog-single__share-button:focus-visible {
  outline: 3px solid rgba(11, 121, 201, 0.28);
  outline-offset: 3px;
}

.cfv-blog-single__share-button.is-copied {
  background: #1d9a58;
}

.cfv-blog-single__share-button-label {
  display: inline-block;
}

.cfv-blog-single__share-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cfv-blog-single__share-button-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.cfv-blog-single__share-modal[hidden] {
  display: none;
}

.cfv-blog-single__share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cfv-blog-single__share-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.56);
}

.cfv-blog-single__share-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  margin: min(12vh, 80px) auto 0;
  padding: 28px 22px 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
}

.cfv-blog-single__share-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  transition: background 0.18s ease, transform 0.18s ease;
}

.cfv-blog-single__share-modal-close:hover {
  background: #e5e7eb;
  transform: scale(1.03);
}

.cfv-blog-single__share-modal-close:focus-visible {
  outline: 3px solid rgba(11, 121, 201, 0.28);
  outline-offset: 3px;
}

.cfv-blog-single__share-modal-title {
  margin: 0 0 18px;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.cfv-blog-single__share-network-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cfv-blog-single__share-network {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cfv-blog-single__share-network:hover {
  transform: translateY(-1px);
  border-color: #ff6b35;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.cfv-blog-single__share-network:focus-visible {
  outline: 3px solid rgba(11, 121, 201, 0.28);
  outline-offset: 3px;
}

.cfv-blog-single__share-network.is-copied {
  border-color: #1d9a58;
  background: #eefaf3;
  color: #11643a;
}

.cfv-blog-single__share-network-label {
  display: inline-block;
}

.cfv-blog-related__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.cfv-blog-related__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 121, 201, 0.22);
  box-shadow: inset 0 0 0 1px rgba(11, 121, 201, 0.08);
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    width 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.cfv-blog-related__dot:hover,
.cfv-blog-related__dot:focus-visible {
  background: rgba(11, 121, 201, 0.42);
  transform: scale(1.05);
  outline: none;
}

.cfv-blog-related__dot.is-active {
  width: 20px;
  background: #0b79c9;
  box-shadow: 0 8px 18px rgba(11, 121, 201, 0.24);
}

.cfv-blog-related.is-static .cfv-blog-related__dots {
  display: none;
}

/* =========================================================
   BLOG RESPONSIVE
   Breakpoints agrupados sin duplicaciones
   ========================================================= */

@media (min-width: 601px) and (max-width: 760px) {
  .cfv-blog-card__button {
    gap: 6px;
  }

  .cfv-blog-card__button-icon {
    display: none;
  }
}

@media (min-width: 1271px) and (max-width: 1340px),
(min-width: 981px) and (max-width: 1182px) {
  .cfv-blog-card__button-icon {
    display: none;
  }
}

@media screen and (max-width: 399px) {
  .cfv-blog-card__button-icon {
    display: none;
  }

  .cfv-blog-card__button {
    width: auto;
    padding: 10px 6px;
  }
}

@media (max-width: 1270px) {
  .cfv-blog-margin__content {
    width: 90%;
  }

  .cfv-blog-single__hero-content {
    gap: 14px;
    padding: 0;
    flex-direction: column-reverse;
    justify-content: end;
    align-items: start;
  }

  .cfv-blog-single__title {
    width: 100%;
    min-width: 100%;
    height: 58px;
    font-size: 28px;
  }

  .cfv-blog-single__meta {
    flex-direction: row;
  }

  .cfv-blog-single__author-name {
    font-size: 12px;
  }

  .cfv-blog-related__slide {
    flex-basis: calc((100% - var(--cfv-related-gap)) / 2);
  }
}

@media (max-width: 980px) {
  .cfv-blog-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 755px) {
  .cfv-blog-related-card__footer {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 12px;
  }

  .cfv-blog-related-card__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .cfv-blog-archive__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cfv-blog-archive-hero {
    min-height: 320px;
    margin-bottom: 28px;
  }

  .cfv-blog-archive-hero__content {
    padding: 22px 18px;
  }

  .cfv-blog-archive-hero__brand {
    gap: 8px;
  }

  .cfv-blog-archive__pagination {
    margin-top: 30px;
  }

  .cfv-blog-archive__pagination ul {
    justify-content: center;
    gap: 8px;
  }

  .cfv-blog-archive__pagination a,
  .cfv-blog-archive__pagination span {
    padding: 8px 12px;
    font-size: 13px;
  }

  .cfv-blog-archive__pagination .prev,
  .cfv-blog-archive__pagination .next {
    padding-inline: 14px;
  }

  .cfv-blog-card__footer {
    gap: 10px;
  }

  .cfv-blog-card__button {
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .cfv-blog-single {
    width: 100%;
  }

  .cfv-blog-single__hero {
    min-height: 420px;
  }

  .cfv-blog-single__meta {
    flex-wrap: wrap;
  }

  .cfv-blog-single__author-avatar img {
    width: 48px;
    height: 48px;
  }

  .cfv-blog-single__content {
    font-size: 16px;
  }

  .cfv-blog-single__actions {
    margin-top: 24px;
  }

  .cfv-blog-single__share-button {
    width: 100%;
    justify-content: center;
  }

  .cfv-blog-single__share-modal-dialog {
    margin-top: 24px;
    padding: 24px 18px 18px;
    border-radius: 20px;
  }

  .cfv-blog-single__share-network-list {
    grid-template-columns: 1fr;
  }

  .cfv-blog-related {
    margin-top: 36px;
  }

  .cfv-blog-related__header {
    margin-bottom: 16px;
  }

  .cfv-blog-related__dots {
    margin-top: 18px;
  }

  .cfv-blog-related__slide {
    flex-basis: 100%;
  }
}