/* =========================================================
   TECHTIPSEXPRESS7
   ARCHIVO: responsive.css
   DESCRIPCIÓN:
   - Responsive completo
   - Tablet
   - Móvil
   - Ajustes para pantallas grandes
   ========================================================= */

/* =========================================================
   1. PANTALLAS GRANDES
   ========================================================= */
@media (min-width: 1440px) {
  :root {
    --container-width: 1280px;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-card--main {
    max-width: 580px;
  }
}

/* ÚLTIMO RECURSO: asegurar apilamiento en móviles (colocado al final del fichero) */
@media (max-width: 767px) {
  .header-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .brand-logo {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 6px 0 !important;
    flex: none !important;
    z-index: 0 !important;
  }

  .header-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    position: relative !important;
    z-index: 1 !important;
  }
}

/* Ajustes adicionales para pantallas muy pequeñas (≤240px y ≤200px) */
@media (max-width: 240px) {
  .brand-logo {
    font-size: 0.88rem !important;
    max-width: calc(100% - 72px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
  }

  .header-actions {
    gap: 8px !important;
    align-items: center !important;
  }

  .lang-btn {
    min-width: 48px !important;
    padding: 6px 8px !important;
    font-size: 0.72rem !important;
  }

  .blog-post-cover__wrap {
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
  }

  .blog-post-cover__image,
  .blog-post-cover__bg,
  .blog-card__image {
    display: block !important;
    object-fit: cover !important;
    object-position: center top !important;
    max-height: 220px !important;
    width: 100% !important;
  }

  .mobile-menu {
    z-index: 2000 !important;
  }
}

@media (max-width: 200px) {
  .brand-logo {
    font-size: 0.82rem !important;
  }

  .lang-btn {
    min-width: 44px !important;
    padding: 4px 6px !important;
    font-size: 0.68rem !important;
  }

  .mobile-menu-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .header-actions {
    gap: 6px !important;
  }
}

/* =========================================================
   2. LAPTOP / TABLET GRANDE
   ========================================================= */
@media (max-width: 1199px) {
  :root {
    --section-space: 92px;
  }

  .main-nav__list {
    gap: 18px;
  }

  .main-nav__list a {
    font-size: 0.92rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .floating-card--one {
    left: 0;
  }

  .floating-card--two {
    right: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   3. TABLET
   ========================================================= */
@media (max-width: 991px) {
  :root {
    --header-height: 82px;
    --section-space: 84px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 999;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Evita que el logo y el selector de idioma se queden pegados en tablet/móvil */
  .brand-logo {
    margin-right: 12px;
    flex-shrink: 0;
  }

  .language-switcher {
    margin-left: 8px;
  }

  .lang-btn {
    min-width: 56px;
    padding: 6px 10px;
  }

  .mobile-menu__nav {
    width: min(100% - 24px, 760px);
    margin: 12px auto 0;
    padding: 24px;
    border-radius: 26px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-menu__list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
  }

  .mobile-menu__list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid transparent;
    font-weight: 600;
  }

  .mobile-menu__list a:hover {
    border-color: rgba(255, 199, 0, 0.16);
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card--main {
    max-width: 100%;
  }

  .services-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 42px;
  }
}

/* =========================================================
   4. MÓVIL GRANDE
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --section-space: var(--section-space-mobile);
    --header-height: 78px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 20px, var(--container-width));
    margin-inline: auto;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .header-wrapper {
    gap: 10px;
    min-height: var(--header-height);
  }

  .main-header {
    height: var(--header-height);
  }

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lang-btn {
  min-width: 58px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 0.78rem;
}

  .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

 .brand-logo {
  font-size: 0.95rem;
  max-width: calc(100% - 150px);
  flex-shrink: 1;
}

  .brand-logo__main,
  .brand-logo__accent {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-point {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    margin-top: 6px;
  }

  .hero-card--main {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border-radius: 24px;
    margin: 0;
  }

  .hero-device {
    min-height: auto;
    width: 100%;
  }

  .hero-device__screen {
    min-height: auto;
    padding: 16px;
  }

  .hero-device__screen-inner {
    gap: 14px;
  }

  .mini-stat {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .mini-stat i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .mini-stat strong {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .mini-stat p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* Tarjetas flotantes corregidas: ya no absolutas en móvil */
  .floating-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .floating-card--one,
  .floating-card--two,
  .floating-card--three {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .section-heading {
    max-width: 100%;
    margin: 0 auto 34px;
    padding-inline: 2px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section-description {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .trust-grid,
  .services-grid,
  .timeline,
  .testimonials-grid,
  .footer-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card,
  .service-card,
  .timeline-item,
  .testimonial-card,
  .coverage-card {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .service-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-card__title {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .service-card__text,
  .feature-card p,
  .timeline-item p,
  .testimonial-card__quote,
  .coverage-card p {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .service-card__list {
    gap: 10px;
  }

  .service-card__list li,
  .coverage-list li {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .coverage-content {
    width: 100%;
    max-width: 100%;
  }

  .coverage-list {
    gap: 10px;
    margin-top: 20px;
  }

  .coverage-list li {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .coverage-card {
    text-align: center;
  }

  .faq-list {
    max-width: 100%;
    gap: 14px;
  }

  .faq-item {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  .faq-question {
    min-height: 68px;
    padding: 18px 16px;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .final-cta__box {
    width: 100%;
    max-width: 100%;
    padding: 34px 18px;
    border-radius: 24px;
  }

  .final-cta__actions {
    width: 100%;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 22px;
    padding-bottom: 24px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom__links {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
  }
}
/* =========================================================
   5. MÓVIL PEQUEÑO
   ========================================================= */
@media (max-width: 575px) {
  .container {
    width: min(100% - 16px, var(--container-width));
  }

  .mobile-menu__nav {
    width: min(100% - 16px, 760px);
    padding: 18px;
    border-radius: 20px;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .section-badge,
  .section-kicker {
    font-size: 0.8rem;
    padding: 7px 12px;
    min-height: 36px;
  }

  .hero-title {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .mini-stat {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .mini-stat i {
    width: 42px;
    height: 42px;
    font-size: 0.92rem;
  }

  .service-card__title {
    font-size: 1.32rem;
  }

  .feature-card h3,
  .timeline-item h3,
  .coverage-card h3 {
    font-size: 1.1rem;
  }

  .testimonial-card__quote,
  .service-card__list li,
  .coverage-list li {
    font-size: 0.94rem;
  }
}
/* =========================================================
   6. PANTALLAS MUY PEQUEÑAS
   ========================================================= */
@media (max-width: 360px) {
  .container {
    width: min(100% - 14px, var(--container-width));
  }

  .brand-logo {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .btn {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .service-card,
  .feature-card,
  .timeline-item,
  .testimonial-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq-question {
    padding-inline: 14px;
  }

  .faq-answer p {
    padding-inline: 14px;
  }
}

/* =========================================================
   MÓVIL: apilar logo y acciones (selector de idioma abajo)
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-height: 140px;
  }
  .header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand-logo {
    width: 100%;
    max-width: none;
    margin-right: 0;
    display: block;
  }

  .header-wrapper {
    min-height: auto;
  }

  .main-header {
    height: auto;
  }
  /* Evita que el logo se coloque por encima de los botones en móvil */
  .brand-logo {
    z-index: 0;
  }

  .header-actions {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .language-switcher {
    position: relative;
    z-index: 1;
  }

  .header-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .language-switcher {
    margin-left: 0;
  }

  .mobile-menu-toggle {
    margin-left: 0;
  }
}

/* =========================================================
   AJUSTE DESKTOP PREMIUM
   ========================================================= */
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
    padding-inline: 40px;
  }

  .hero-grid,
  .coverage-grid {
    gap: 48px;
  }

  .trust-grid,
  .services-grid,
  .timeline,
  .testimonials-grid {
    gap: 28px;
  }

  .final-cta__box {
    padding: 64px 48px;
  }
}


@media (min-width: 1200px) {
  .footer-grid {
    gap: 40px;
  }

  .footer-bottom {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .header-wrapper {
    gap: 24px;
  }

  .main-nav {
    margin-left: auto;
    margin-right: 12px;
  }

  .header-actions {
    gap: 12px;
    flex-shrink: 0;
  }

  .language-switcher {
    flex-shrink: 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-text {
    max-width: 640px;
    font-size: 1.08rem;
  }

  .hero-points {
    max-width: 680px;
  }
}

@media (max-width: 1199px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 24px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom__links {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-whatsapp-btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .footer-top-strip {
    padding-bottom: 18px;
  }

  .footer-top-strip__inner {
    padding: 16px;
    border-radius: 22px;
    gap: 12px;
  }

  .footer-top-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
  }
}

@media (max-width: 1199px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card__image {
    width: 100%;
    height: auto;
    object-position: center;
    object-fit: contain;
    display: block;
    background: #0f1117;
  }

  .blog-hero {
    padding-top: calc(var(--header-height) + 42px);
  }
}

@media (max-width: 1199px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-post-cover__image {
    width: 100%;
    height: 100%;
    object-position: center top; /* reforzado para móvil */
    object-fit: contain;
    display: block;
  }

  .blog-post-article {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .blog-post-article h2 {
    font-size: 1.38rem;
  }

  .blog-post-article p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .blog-post-hero {
    padding-top: calc(var(--header-height) + 42px);
  }
}

/* Asegurar wrap y posición en móviles: aplicar a <=767 para consistencia */
@media (max-width: 767px) {
  .blog-post-cover__wrap {
    aspect-ratio: 16 / 9;    /* menos recorte en pantalla angosta */
    border-radius: 22px;
    max-width: 100%;
    overflow: hidden;
  }

  .blog-post-cover__image {
    object-position: center top;  /* prioriza la parte superior con el contenido */
  }
}


@media (max-width: 767px) {
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .brand-logo {
    flex: 1;
    min-width: 0;
  }

  .language-switcher {
    flex-shrink: 0;
  }

  .mobile-menu-toggle {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
} 

/* =========================================================
   SOPORTE: PANTALLAS MUY PEQUEÑAS (ANCHO ≤ 240px / 200px)
   - Ajustes para dispositivos muy estrechos (ej. 200x500)
   - Evitar que el icono hamburguesa se corte
   - Mantener imágenes de las tarjetas visibles (no demasiado pequeñas)
   ========================================================= */
@media (max-width: 240px) {
  .header-wrapper {
    gap: 6px;
    padding-inline: 6px;
  }

  .main-header {
    padding-inline: 6px;
  }

  .brand-logo {
    max-width: calc(100% - 56px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    font-size: 0.92rem;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle > * {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__nav {
    margin: 8px;
    padding: 12px;
  }

  /* Tarjetas del blog: evitar min-height grande y forzar imágenes más visibles */
  .blog-card {
    min-height: auto;
  }

/* Regla final: forzar apilamiento en móviles, anula reglas previas si existen */
@media (max-width: 767px) {
  .header-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .brand-logo {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 6px 0 !important;
    flex: none !important;
  }

  .header-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .language-switcher {
    order: 1 !important;
  }
}

  .blog-card__image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    object-position: center top !important;
    display: block;
  }

  .blog-card__face--front img {
    height: auto !important;
    object-fit: cover !important;
  }

  .blog-card__body {
    padding: 14px 12px;
  }

  .blog-card__title {
    font-size: 1.12rem;
  }
}

/* Ajustes extra para pantallas extremadamente angostas (≤200px) */
@media (max-width: 200px) {
  .brand-logo {
    font-size: 0.88rem;
    max-width: calc(100% - 48px);
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-title,
  .section-title {
    font-size: 1.4rem;
  }
}

/* Soporte smartwatch: ocultar partes no esenciales, compactar header y tarjetas */
@media (max-width: 176px) {
  .header-wrapper {
    gap: 4px;
    padding-inline: 4px;
  }

  /* Mostrar sólo el logo compacto si existe, ocultar texto largo */
  .brand-logo__main,
  .brand-logo__accent {
    display: none;
  }

  .brand-logo {
    min-width: 0;
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .language-switcher,
  .header-actions > *:not(.mobile-menu-toggle) {
    display: none;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
    padding: 0;
  }

  /* Tarjetas del blog: imagen cuadrada y texto mínimo */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-card {
    min-height: auto;
    border-radius: 10px;
  }

  .blog-card__image {
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    height: auto !important;
  }

  .blog-card__body {
    padding: 8px 8px;
  }

  .blog-card__excerpt,
  .blog-card__meta {
    display: none;
  }

  .blog-card__title {
    font-size: 1rem;
    line-height: 1.1;
    margin-bottom: 6px;
  }
}

@media (max-width: 150px) {
  /* Ajustes extremos: esconder casi todo excepto botón de menú */
  .header-wrapper {
    justify-content: flex-end;
  }

  .brand-logo {
    display: none;
  }

  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
  }

  /* Artículos: mostrar sólo imagen y título ultra-compacto */
  .blog-card__title {
    font-size: 0.95rem;
  }
}
