.container-blog {
    max-width: 1160px;
}

.direction-blog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bp-grid {
    row-gap: 24px;
}

.bp-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 330px;
    max-width: 330px;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0 auto 5px;
    background: var(--Blanco);
    border-radius: var(--borderWidth);
    overflow: hidden;
    border: #CDCCCB solid 1px;
    transition: transform .25s ease;
}

.bp-card__media {
    position: relative;
    display: block;
    width: calc(100% - 20px);
    height: 230px;
    overflow: hidden;
    border-radius: var(--borderWidth);
    margin: 10px auto 0;    
}

.bp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.bp-card:hover .bp-card__media img {
    transform: scale(1.05);
}

.bp-card__date {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--AzulClaro);
    color: var(--Blanco);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--borderWidth);
    letter-spacing: .3px;
}

.bp-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 13px 22px;   
    background-color: transparent; 
}

.bp-card__title {
    height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--Negro);
    text-decoration: none;
}

.bp-card__title:hover {
    color: var(--AzulClaro);
}

.bp-card__desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.6;
    color: #111;
    flex: 1;
}

.bp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bp-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.bp-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef0f3;
    color: #111;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
}

.bp-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-card__author-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: var(--borderWidth);
    background: var(--AzulOscuro);
    color: var(--Blanco);
    font-size: 17px;
    text-decoration: none;
    transition: box-shadow .4s ease-in, background .25s ease;
}

.bp-card__arrow i {
    color: var(--Blanco);
    transform: rotate(-45deg);
    transition: all .25s ease;
}

.bp-card:hover i {
    transform: rotate(0deg);
    color: var(--Blanco);
}


.bp-card__arrow:hover {
    box-shadow: 0 0 20px var(--AzulOscuro) !important;
    transition: all 0.4s ease-in;
}

.bp-carousel .owl-stage {
    display: flex;
}

.bp-carousel .owl-item {
    display: flex;
    height: auto;
    justify-content: center;   
}


.bp-carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
}

.bp-carousel .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    background: #e5e8ec;
    border-radius: 50%;
    display: block;
    transition: background .25s ease;
}

.bp-carousel .owl-dot.active span {
    background: var(--AzulOscuro);
}

.bp-slide {
    width: 100%;
}

@media (max-width: 1279px) {
    .container-blog {
        max-width: 710px;
    }
}

@media (max-width: 991px) {
    .container-blog {
        max-width: 330px;
    }

    .bp-card__title {
        font-size: 17px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bp-card__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .bp-card {
        width: 100%;
        max-width: 330px;
    }

    .bp-card__body {
        padding: 14px 16px 18px;
    }

    .bp-card__arrow {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .bp-card__title {
        font-size: 18px;
    }
}