@media screen and (min-width: 980px) {
  .columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

  }
  
  .columns > * {
    box-sizing: border-box;
  }
  
  .two_column {
    flex: 0 0 calc(50% - 10px);
  }
  
  .third_column {
    flex: 0 0 calc(33.333% - 13.333px);
  }
}

.one_column{
    flex: 0 0 100%;
}

.circle-event__container
.circle-blog__container{
    width: 100%;
}

.circle-event__container a,
.circle-blog__container a{
    text-decoration: none;
}

.circle-event__box,
.circle-blog__box{
    border-radius: 8px;
    border: 2px solid #9025BF;
    background: #fff;
    padding: 20px;
    transition: all .5s ease;
}

.circle-blog__box{
    border:2px solid #8EC3F1;
    position: relative;
}

.circle-blog__box:hover{
    background: #EEF6FD;
    box-shadow: 0px 3px 6px #00000029;
}

.circle-blog__box h3{
    color:#007491;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.1;
    padding: 0;
    letter-spacing: 0.05em;
    margin: 0;
    transition: all .5s ease;
}

.circle-blog__box .link-post{
    color: #007491;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .5s ease;
    margin:0;
    position: absolute;
    bottom: 20px;
}

.circle-blog__box .link-post:hover{
    text-decoration: underline !important;
}

.circle-blog__details{
    padding-bottom: 30px;
}

.circle-blog__details p,
.circle-blog__details .post-description{
    font-size: .875rem;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1rem !important;
}

.circle-blog__details .post-description2{
    font-size: .875rem;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1rem !important;
}

@media screen and (max-width:980px){
    .circle-blog__details p,
    .circle-blog__details .post-description,
    .circle-blog__details .post-description2{
        display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }
}



@media screen and (max-width: 980px) {
  .columns {
    flex-direction: column;
    gap: 15px;
    display: flex;
  }
  
  .two_column,
  .third_column {
    flex: 0 0 100%;
  }
  
}

/* POST SLIDER */

/* Ajustes específicos para Swiper si el conflicto de .columns persiste */
.circle-blog__container .swiper-wrapper {
    /* Deshabilita cualquier flex-wrap o display:block que pueda venir de .columns */
    flex-wrap: nowrap !important; /* Swiper prefiere no-wrap */
}

.circle-blog__container .swiper-slide {
    display:flex;
    /* Asegura que el slide tome el ancho que Swiper le da */
    flex-shrink: 0;
    width: auto; /* Swiper calculará esto */
    height: auto;
}


/* Estilos para la Navegación de Swiper */
/* Estilos de navegación y paginación para Swiper */
.swiper-navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.circle-blog__container .swiper-navigation-container .swiper-button-prev,
.circle-blog__container .swiper-navigation-container .swiper-button-next {
    position: static;
    transform: none;
    margin: 0 10px;
    color: #fff;
    background: #007491;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.swiper-navigation-container .swiper-button-prev::after,
.swiper-navigation-container .swiper-button-next::after {
    font-size: 12px;
    font-family: "Font Awesome 6 Free";
    color: inherit;
    font-style: normal;
    font-weight: 900;
}
.swiper-navigation-container .swiper-button-next::after{
    content: "\f061";
}
.swiper-navigation-container .swiper-button-prev::after{
    content: "\f060";
}

.swiper-navigation-container .swiper-pagination {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    width: auto;
    text-align: center;
    margin: 0 15px;
}

.circle-blog__container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background:#fff;
    border:1px solid #007491;
    opacity: 0.8;
    margin: 0 5px;
    cursor: pointer;
    outline:none;
    transition: all .3s ease;
}

.circle-blog__container .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #007491;
    opacity: 1;
}

.swiper-navigation-container:only-child {
    margin-top: 10px;
}

.swiper-navigation-container > *:not(:last-child) {
    margin-right: 10px;
}

.swiper-navigation-container > .swiper-pagination {
    margin-left: 0px;
    margin-right: 0px;
    width: auto !important;
}



/* EVENTS */

.circle-event__box{
    margin-bottom: 15px;
}

.circle-event__box:hover{
    background: #F4E8F9;
    box-shadow: 0px 3px 6px #00000029;
}

.circle-event__date{
    display: flex;
    flex-direction: row;
    justify-content:start;
    gap: 5px;
}


.circle-event__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:7px
}

.circle-event__date{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.circle-event__details{
    width: 75%;
    padding: 10px 10px 10px 20px;
}

/* @media screen and (min-width:580px){
    .circle-event__box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:7px
    }

    .circle-event__date{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .circle-event__details{
        width: 75%;
        padding: 10px 10px 10px 20px;
    }
} */


.circle-event__details h3{
    color: #007491;
    font-weight: 500;
    text-transform: none;
    line-height: 1.1;
    padding: 0;
    letter-spacing: 0.05em;
    font-size: 20px;
    margin: 0;
    transition: all .5s ease;
}

.circle-event__details p,
.circle-event__details .event-description{
    font-size: .875rem;
    margin: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1rem !important;
}

@media screen and (max-width:980px){
    .circle-event__details p,
    .circle-event__details .event-description{
        display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }
}

.circle-event__details .link-event{
    margin: 0;
    color: #007491;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .5s ease;
}

.circle-event__details .link-event:hover{
    text-decoration: underline !important;
}

.circle-event__date span{
    margin:0;
    padding:0;
    font-size: 30px;
    font-weight: 500;
    color: #9025BF;
    text-align: center;
}

.circle-event__date span.event-month,
.circle-event__date span.event-year
{
    font-size: 18px;
}

@media screen and (max-width:580px){
    .circle-event__date span{
        font-size: 25px;
    }
    .circle-event__date span.event-month,
    .circle-event__date span.event-year
    {
        font-size: 16px;
    }
    .circle-event__details{
    padding: 10px;
    }
}
