.blog-wrapper h3 {
    color: var(--e-global-color-text);
    font-family: "Open Sans", Sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 0;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-wrapper p {
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    margin-bottom: 0;
    /*padding-top: 1rem;*/
}

.blog-wrapper {
    display: flex;
    width: 1080px;
    justify-content: start;
    align-items: flex-start;
    font: inherit;
    overflow-x: visible;
    transition: all 0.4s ease;
    
}



.blog-cards {
    min-width: 420px;
    height: 450px;
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
    border-radius: 18px;
    overflow: hidden;
    margin: 1rem;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.blog-cards:hover {
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.blog-cards:first-child {
    margin-left: 0;
}

.blog-cards:last-child {
    margin-right: 0;
}

.blog-cards > img {
    width: 100%;
    max-height: 246px;
    min-height: 246px;
    border-bottom-right-radius: 200px !important;
    object-fit: cover;
}

.blog-cards-info {
    /*max-height: 100%;*/
    padding: 3rem 3rem 0 3rem;
}

/* 
.blog-text{
    height: 160px;
    overflow: hidden;
    
} */

.blog-text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-cards footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2.4rem 0;
}

.blog-cards .date-post {
    font-weight: bold;
    color: var(--e-global-color-8e8a8a2);
}

.blog-cards a {
    display: flex;
    justify-content: flex-end;
    width: 120px;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.blog-cards a span {
    padding-right: 1rem;
}

.blog-cards a img {
    display: flex;
    max-width: 32px !important;
}

/* The dot/bullet/indicator container */

.dot-blog-container {
    text-align: left;
    /*padding: 20px;*/
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    /*background: #ddd;*/
}

/* The dots/bullets/indicators */

.dot-blog {
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: 0 10px;
    /*background-color: #fff;*/
    border-radius: 50%;
    border: 3px solid #d8a3cd;
    display: inline-block;
    transition: background-color 0.3s linear;
    /*transition: width .3s ease-in-out;*/
    /*transition: height 0.4s ease;*/
    /*transition: margin-bottom 1.2s ease;*/
}

.dot-blog:hover {
    background-color: #d8a3cd;
}

/* Add a background color to the active dot/circle */

.active-dot-blog {
    background-color: #d8a3cd;
}

/*NAV ARROWS*/

.slide-nav-buttons-blog-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.slide-nav-buttons-blog-content .button-right-blog-content {
    cursor: pointer;
}

.button-right-blog-content svg path {
    transition: all 0.3s ease-in-out;
}

.button-right-blog-content:hover svg path {
    fill: #d088b1;
}

.button-right-blog-content:hover svg path + path {
    fill: #fff;
}

.slide-nav-buttons-blog-content .button-left-blog-content {
    margin-right: 10px;
    cursor: pointer;
}

.button-left-blog-content svg {
    transform: rotate(-180deg);
}

.button-left-blog-content svg path {
    transition: all 0.3s ease-in-out;
}

.button-left-blog-content:hover svg path {
    fill: #d088b1;
}

.button-left-blog-content:hover svg path + path {
    fill: #fff;
}

@media (min-width: 1280px) and (max-width: 1366px){
    .blog-cards{
        min-width: 380px;
    }
}

@media (max-width: 767px) {
    .blog-wrapper {
        padding: 5rem 0 5rem 4rem;
        margin-left: -2rem;
        margin: -6rem 0 -4rem 0;
        width: 100%;
        overflow-x: scroll;
        
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    
    .blog-wrapper::-webkit-scrollbar{
        display: none !important;
    }
    .blog-cards {
        min-width: 245px;
        height: 400px;
    }
    .blog-cards:hover {
        box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
        transform: translateY(-5px);
        z-index: 1;
        transition: all 0.3s ease-in-out;
    }
    .blog-cards img {
        height: 200px !important;
        border-bottom-right-radius: 140px !important;
    }
    .blog-wrapper h3 {
        font-size: 16px !important;
    }
    .blog-wrapper p {
        font-size: 14px !important;
    }
    .blog-text p {
        margin-top: 10px !important;
        line-height: 18px !important;
    }
    .blog-cards .date-post {
        width: 100%;
        font-size: 14px !important;
    }
    .blog-cards a {
        font-size: 14px !important;
    }
    .dot-blog, .dot-blog-container  {
        display: none;
    }
}
