ul {
    color: #013b91 !important;
    /* list-style-type: disc !important;  */
    list-style-position: inside !important;
  }

  ul li::marker {
    color: #013b91 !important;
  }

  .articleMainContainer p {
    font-weight: inherit;
  }

  .banner-img-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
  }

  .title.titleArticle {
    font-size: calc(1.5rem + 0.4vw);
  }

  @media screen and (max-width: 1455px) {
    .title.titleArticle {
      font-size: calc(1.5rem + 0.2vw);
    }
  }

  .recommended-articles {
    padding: 50px 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.8rem;
    font-weight: bold;
    color: #000000;
  }

  .section-title-underline {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }

  .underline-gray {
    background-color: #cccccc;
    height: 2px;
    width: 100%;
    margin: 0 auto;
  }

  .underline-red {
    background-color: #c32033;
    height: 5px;
    width: 40%;
    margin: -3px auto 0;
  }

  .recommendation-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    /* Cambiar de space-between a flex-start */
  }

  .recommendation-card {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    border: 1px solid #ffffff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .recommendation-card .card-img-top {
    border-radius: 15px 15px 0 0;
    height: 250px;
    object-fit: cover;
  }

  .recommendation-card .card-img-overlay {
    background: #0000009c;
    color: #ffffff;
    border-radius: 0 0 15px 15px;
    display: flex;
    align-items: flex-end;
    padding: 0;
  }

  .recommendation-card .card-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
    padding: 20px;
    text-align: left;
    width: 100%;
  }

  .post-cat {
    z-index: 10;
  }

  @media (max-width: 992px) {
    .recommendation-card {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
  }

  @media (max-width: 576px) {
    .recommendation-card {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .trc_elastic_thumbs-feed-01-b-delta .videoCube {
    height: 425px !important;
  }

  .axil-tags {
    display: flex;
    align-items: center;
  }

  .title {
    margin-right: 1rem;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: auto;
  }

  .banner-principal {
    background-color: #EEEEEE;
    background-size: cover;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
  }


  .banner-principal h1.title {
    font-size: 36px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 20px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
  }

  @media (max-width: 992px) {

    /* Pantallas medianas */
    .banner-principal h1.title {
      font-size: 28px;
    }
  }

  @media (max-width: 768px) {

    /* Pantallas pequeñas */
    .banner-principal h1.title {
      font-size: 24px;
    }
  }

  @media (max-width: 576px) {

    /* Pantallas extra pequeñas */
    .banner-principal h1.title {
      font-size: 20px;
    }
  }




  .banner-principal .post-meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .banner-principal .post-author-avatar img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border: 3px solid #c32033;
  }



  .banner-principal .post-meta .content h6.post-author-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .banner-principal .post-meta .content .subtitle {
    font-size: 14px;
    color: #d1d1d1;
  }

  .banner-principal .post-meta-list li {
    font-size: 14px;
    color: #000;
    margin-right: 15px;
  }

  .banner-principal .social-icon a {
    color: #fff;
    background-color: #c32033 !important;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .banner-principal-dos {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 600px;
    color: white;
    border-radius: 20px;
  }

  .fondo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 20px 20px;
  }

  /* Ajustes para pantallas móviles */
  @media (max-width: 576px) {
    .fondo-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 0 0 20px 20px;
    }
  }


  .banner-principal-dos h1.title {
    font-size: 36px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .banner-principal-dos .post-meta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .banner-principal-dos .post-author-avatar img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border: 3px solid #c32033;
  }

  .banner-principal-dos .post-meta .content h6.post-author-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .banner-principal-dos .post-meta .content .subtitle {
    font-size: 14px;
    color: #fff;
  }

  .banner-principal-dos .post-meta-list li {
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
  }

  .banner-principal-dos .social-icon a {
    color: #fff;
    background-color: #c32033 !important;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .banner-principal-dos .post-cat {
    margin-bottom: 20px;
  }

  @media (max-width: 992px) {
    .banner-principal-dos h1.title {
      font-size: 28px;
    }
  }

  .autor {
    background-color: #EEEEEE;
    padding: 10px;
  }

  .author-image {
    border: 3px solid #c32033;
  }

  .seccion-titulo {
    background-color: #000;
    color: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  }

  /* estilo para la seccion de autores */
  .about-author {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
  }

  .author-list {
    display: flex;
    gap: 20px;
  }

  .author-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 300px;
  }


  .media-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .border-red-rounded {
    border: 3px solid #c32033;
    border-radius: 50px;
  }

  .autor-v-image {
    border-radius: 50px;

  }

  .autor-v {
    background-color: #EEEEEE;
    padding: 10px;
    margin-top: 5px;

  }

  .contenedor-autor {
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contenedor-autor:hover {
    transform: translateY(-5px);
  }


  .autor-border {
    border: 6px solid #c32033;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }


  .contenedor-autor h5 {
    font-weight: 600;
  }

  .contenedor-autor h6 {
    margin-top: 5px;
    color: #333;
    font-weight: 600;
  }


  .separador-h {
    border-top: 3px solid #c32033;
    width: 100%;
    z-index: 1;
  }

  /* Contenedor de la barra lateral */
  .sidebar-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;

  }

  /* estilos para el formulario de pago */

  .form-container {
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    position: relative;
    margin: 20px;
  }

  .form-column {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-heading {
    font-size: 2.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .form-text {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.5rem !important;
  }

  .input-group .form-control {
    height: auto;
    /* padding: 12px 15px; */
    border-radius: 0 6px 6px 0;
  }

  .input-group .input-group-text {
    background-color: #f9f9f9;
    border: 1px solid #dcdcdc;
    border-right: none;
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
  }

  .custom-btn {
    background-color: #c32033;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.8rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }

  .custom-btn:hover {
    background-color: #585858;
  }

  .image-column {
    background-image: url('./assets/images/suscripcion-login.svg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.541);
    z-index: 1;
  }

  .image-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .form-text-muted {
    color: #ddd;
    font-size: 1rem;
    margin-top: 10px;
  }

  .separador-mid {
    border-top: 4px solid #881522;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;

  }

  .iconos {
    color: #c32033;
    font-size: 20px;

  }

  .idc-online {
    color: transparent;
    -webkit-text-stroke: 1px white;
    /* Borde blanco */
    font-weight: bolder;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 45px !important;
  }

  /* estilos para el recuadro pequeño de articulo embebido */
  .article {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    width: 400px;
    margin: 20px auto;
  }

  .article .image {
    position: relative;
    top: -20px;
    margin-bottom: -20px;
  }

  .article .image img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
  }

  .article .title {
    font-size: clamp(1.5rem, 2vw, 2rem) !important;
    margin-top: 20px !important;
    color: #333 !important;
    white-space: normal !important;
  }



  .article .exp-button a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #c32033;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
  }

  .article .exp-button a:hover {
    background-color: #9b0a1b;
  }

  .cms-megaMenus-H3,
  .cms-megaMenus-H2 {
    text-align: center !important;
    white-space: normal !important;
    font-family: "Red Hat Display", sans-serif !important;
    font-size: clamp(2.8rem, 2vw, 2rem) !important;
    font-weight: 700 !important;
    color: #1e70bf !important;
    margin: 15px 0 !important;

  }

  @media screen and (max-width: 390px) {
    .article {
      width: 300px;
    }

  }

  .cms-megaMenus-H3 {
    font-size: clamp(2.1rem, 2vw, 2rem) !important;
    color: #1D1C1A !important;
    font-weight: 800 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: 'Rellena Pro', sans-serif !important;
  }