

/* === ASSET CSS HASH: 419512e767b370d1d4dd63dcacd196288f51c027 | SCOPE: section[data-guid="C6D3E3DA-7F4B-D083-085E-ECB48A2736BA"] === */
/* ============================================
   Widget Blog - Estilos Scoped
   Todos los estilos están scoped bajo .blog-widget
   ============================================ */

section[data-guid="C6D3E3DA-7F4B-D083-085E-ECB48A2736BA"] .blog-widget a{
  text-decoration: none;
}

section[data-guid="C6D3E3DA-7F4B-D083-085E-ECB48A2736BA"] .blog-widget{
  /* ============================================
     Estilos base de tipografía
     ============================================ */
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--primary_font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;

  /* Section wrapper - padding consistente (contenido central) */
  > .blog-area {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    > .blog-area {
      padding-top: 80px !important;
      padding-bottom: 80px !important;
    }
  }
  @media only screen and (max-width: 767px) {
    > .blog-area {
      padding-top: 60px !important;
      padding-bottom: 60px !important;
    }
  }
  
  /* ============================================
     Estilos de Sección (tmp-section-gapBottom)
     ============================================ */
  
  .tmp-section-gapBottom {
    padding-bottom: 120px !important;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tmp-section-gapBottom {
      padding-bottom: 80px !important;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-section-gapBottom {
      padding-bottom: 60px !important;
    }
  }
  
  /* ============================================
     Estilos de Título de Sección (tmp-section-title-border)
     ============================================ */
  
  .tmp-section-title-border .subtitle {
    display: flex;
    color: #363636;
    font-size: 13px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-items: center;
    padding: 0 15px;
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-section-title-border .subtitle {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  .tmp-section-title-border .subtitle .subtitle-text {
    color: #363636;
    font-weight: 700;
    width: max-content;
  }
  
  .tmp-section-title-border .subtitle .number {
    color: #363636;
    transition: 0.5s;
    opacity: 0.6;
    display: none;
  }
  
  .tmp-section-title-border .title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1c;
    margin: 0 0 20px;
    font-family: var(--primary_font);
  }
  
  /* Ocultar inicialmente los títulos con animación tmp-title-split */
  .tmp-section-title-border .title.tmp-title-split {
    opacity: 0;
  }
  
  @media only screen and (max-width: 991px) {
    .tmp-section-title-border .title {
      font-size: 36px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-section-title-border .title {
      font-size: 28px;
    }
  }
  
  .tmp-section-title-border .description {
    font-size: 16px;
    line-height: 1.7;
    color: #363636;
    margin: 0;
    font-weight: 400;
  }
  
  /* ============================================
     Estilos de Separadores de Línea
     ============================================ */
  
  .line-separator {
    position: relative;
    background-image: linear-gradient(90deg, var(--primary_color), rgba(33, 38, 45, 0));
    width: 50px;
    height: 1px;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
  }
  
  .pres-line-separator-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    margin: 0 -15px;
    justify-content: center;
  }
  
  @media only screen and (max-width: 767px) {
    .pres-line-separator-wrapper {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .pres-line-separator-wrapper .line-separator {
      display: none;
    }
  }
  
  .pres-line-separator-wrapper.text-center .line-separator.line-left {
    background-image: linear-gradient(-90deg, var(--primary_color), rgba(33, 38, 45, 0));
  }
  
  .pres-line-separator-wrapper.text-center .line-separator.line-right {
    background-image: linear-gradient(90deg, var(--primary_color), rgba(33, 38, 45, 0));
  }
  
  /* ============================================
     Estilos de Blog Card (tmp-card)
     ============================================ */
  
  .tmp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.5s;
    height: 100%;
  }
  
  .tmp-card:hover {
    transform: translateY(-4px);
  }
  
  .tmp-card .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .tmp-card .inner .thumbnail {
    position: relative;
    overflow: hidden;
  }
  
  .tmp-card .inner .thumbnail a {
    display: block;
    overflow: hidden;
  }
  
  .tmp-card .inner .thumbnail a img {
    width: 100%;
    transition: 0.5s;
    overflow: hidden;
  }
  
  .tmp-card:hover .inner .thumbnail a img {
    transform: scale(1.1);
  }
  
  .tmp-card .inner .content {
    padding: 30px;
    padding-top: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .tmp-card .inner .content {
      padding: 18px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-card .inner .content {
      padding: 16px 14px;
    }
  }
  
  .tmp-card .inner .content .title {
    font-size: 24px;
    line-height: 1.5;
    transition: all 0.5s;
    margin-bottom: 10px;
    font-family: var(--primary_font);
    font-weight: 600;
    color: #1b1b1c;
  }
  
  @media only screen and (max-width: 1199px) {
    .tmp-card .inner .content .title {
      font-size: 20px;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-card .inner .content .title {
      font-size: 20px;
    }
  }
  
  .tmp-card .inner .content .title a {
    color: inherit;
    transition: all 0.5s;
  }
  
  .tmp-card .inner .content .title a:hover {
    color: var(--primary_color);
  }
  
  .tmp-card .inner .content .descriptiion {
    margin-bottom: 15px;
    color: #363636;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    font-family: var(--primary_font);
  }
  
  /* ============================================
     Estilos de Tag News
     ============================================ */
  
  .tag-news {
    position: absolute;
    left: 10px;
    top: 10px;
    display: block;
    max-width: max-content;
    padding: 5px 15px;
    color: #ffffff;
    background: #1b1b1c;
    border-radius: 3px;
    pointer-events: none;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--primary_font);
    z-index: 2;
  }
  
  /* ============================================
     Estilos de Meta List (inversweb-meta-list)
     ============================================ */
  
  .inversweb-meta-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    padding-left: 15px;
    margin-bottom: 10px;
    position: relative;
  }
  
  @media only screen and (max-width: 575px) {
    .inversweb-meta-list {
      gap: 5px;
    }
  }
  
  .inversweb-meta-list::after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 7px;
    width: 7px;
    background: var(--primary_color);
    border-radius: 50%;
  }
  
  .inversweb-meta-list li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #363636;
    font-family: var(--primary_font);
  }
  
  .inversweb-meta-list li span i {
    margin-right: 5px;
  }
  
  .inversweb-meta-list li a {
    color: #363636;
    transition: all 0.3s;
  }
  
  .inversweb-meta-list li a:hover {
    color: var(--primary_color);
  }
  
  .inversweb-meta-list li.separator {
    color: #848788;
  }
  
  .inversweb-meta-list li.comment-area {
    margin-left: 12px;
  }
  
  .inversweb-meta-list li.comment-area i {
    margin-right: 3px;
  }
  
  /* ============================================
     Estilos de Read More Button
     ============================================ */
  
  .read-more-btn {
    margin-top: auto;
  }
  
  /* ============================================
     Estilos de Invers Anime (efecto de brillo)
     ============================================ */
  
  .invers-anime {
    position: relative;
    overflow: hidden;
  }
  
  .invers-anime::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
    pointer-events: none;
  }
  
  .invers-anime:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
  }
  
  /* ============================================
     Estilos de Video Icon
     ============================================ */
  
  .tmp-card .inner .thumbnail .video-icon {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    z-index: 3;
  }
  
  /* ============================================
     Estilos de Efecto tmponhover (flashlight effect)
     ============================================ */
  
  .tmponhover {
    position: relative;
    overflow: hidden;
  }
  
  .tmponhover::before {
    content: "";
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    background: radial-gradient(var(--primary_color), transparent, transparent);
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: 0.5s, top 0s, left 0s;
    border-radius: 6px;
  }
  
  .tmponhover:hover::before {
    opacity: 1;
  }
  
  .tmponhover::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: 6px;
    z-index: 1;
  }
  
  .tmponhover > * {
    z-index: 2;
    position: relative;
  }
  
  /* ============================================
     Estilos de Botones (.tmp-btn)
     ============================================ */
  
  .tmp-btn,
  .btn-default {
    padding: 0 28px;
    border-radius: 5px;
    background: var(--primary_color);
    transition-duration: 300ms;
    color: #ffffff;
    font-family: var(--primary_font);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    display: flex;
    height: 50px;
    line-height: 49px;
    letter-spacing: 0.5px;
    width: max-content;
    transition: all 0.6s;
    border: 0 none;
    position: relative;
    z-index: 3;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-btn,
    .btn-default {
      padding: 0 16px;
      height: 42px;
      line-height: 42px;
    }
  }
  
  .tmp-btn::after,
  .btn-default::after {
    position: absolute;
    content: "";
    width: 200%;
    height: 200%;
    left: 50%;
    top: 110%;
    background: var(--primary_color);
    transform: translateX(-50%);
    transition: all 0.6s;
    transition-duration: 800ms;
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
  }
  
  .tmp-btn:hover,
  .btn-default:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 0 20px 5px rgba(82, 55, 249, 0.33);
  }
  
  .tmp-btn:hover::after,
  .btn-default:hover::after {
    opacity: 1;
    top: -30%;
  }
  
  .tmp-btn.btn-border,
  .btn-default.btn-border {
    background: transparent;
    border-color: #e3e3e3;
    border-width: 2px;
    border-style: solid;
    color: #1b1b1b;
  }
  
  .tmp-btn.btn-border:hover,
  .btn-default.btn-border:hover {
    background-color: var(--primary_color);
    border-color: var(--primary_color) !important;
    color: #ffffff;
  }
  
  .tmp-btn.btn-small,
  .btn-default.btn-small {
    height: 44px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
  }
  
  .tmp-btn.rounded-player,
  .btn-default.rounded-player {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    padding: 0;
    line-height: 100px;
    display: inline-block;
    position: relative;
  }
  
  @media only screen and (max-width: 767px) {
    .tmp-btn.rounded-player,
    .btn-default.rounded-player {
      width: 70px;
      height: 70px;
      line-height: 70px;
    }
  }
  
  .tmp-card .inner .thumbnail .video-icon .tmp-btn.btn-small {
    width: 85px;
    height: 85px;
  }
  
  .tmp-btn.rounded-player span,
  .btn-default.rounded-player span {
    display: inline-block;
  }
  
  .tmp-btn.rounded-player span i,
  .btn-default.rounded-player span i {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
  }
  
  .tmp-card .inner .thumbnail .video-icon .tmp-btn.btn-small span i {
    font-size: 26px;
  }
  
  .tmp-btn.rounded-player:focus,
  .btn-default.rounded-player:focus {
    outline: none;
    color: #ffffff;
  }
  
  .tmp-btn.rounded-player:hover,
  .btn-default.rounded-player:hover {
    transform: scale(1.1);
    background: var(--primary_color);
  }
  
  .tmp-btn:focus,
  .btn-default:focus {
    box-shadow: none;
    border: none;
    background-color: unset;
    background: var(--primary_color);
    color: #ffffff;
  }
  
  /* ============================================
     Utilidades
     ============================================ */
  
  .mt--10 {
    margin-top: 10px;
  }
  
  .mb--10 {
    margin-bottom: 10px;
  }
  
  .w-100 {
    width: 100%;
  }
}


