.blog-carousel-wrapper {
/*     max-width: 1200px; */
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

.blog-carousel-wrapper h2 {
    text-align: center;
    font-family: 'Serif', Georgia, Times, serif;
    font-size: 2.5rem;
    color: #003366; /* Dark blue color */
    margin-bottom: 30px;
}

.blog-carousel .blog-carousel-item {
    padding: 0 15px; /* Creates spacing between cards */
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image img {
    width: 100%;
    height: 200px!important;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-content h3 {
    font-family: 'Sans-Serif', Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 60px; /* Adjust this value as needed */
}

.blog-card-content h3 a {
    text-decoration: none;
    color: inherit;
}

.blog-card-content .read-more {
    font-family: 'Sans-Serif', Arial, Helvetica, sans-serif;
    color: #D96F8F; /* Pink color from your screenshot */
    text-decoration: none;
    font-weight: bold;
}

/* Slick Carousel Dots Styling */
.slick-dots {
    position: absolute;
    bottom: -40px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ccc;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    background: #003366; /* Dark blue color for active dot */
}

/* FIX: Remove unwanted background from the dots row */
.blog-carousel-wrapper .slick-dots {
    background: transparent !important;
    padding: 0 !important;
    margin-top: 20px; /* Add some space above the dots */
}