.blogs {
    border-bottom: 1px solid #DDDDDD;
    padding-top: 85px;
}
.blog-section {
    padding: 68px 84px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    
}
.section-header .heading-large{
    margin-bottom: 0;
}

.dropdown-section, .year-month-select{
    display: flex;
    column-gap: 16px;
}

.blog-category {
    width: 346px;
}
.year-select, .month-select {
    width: 142px;
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 6px;
    color: #000000;
}

.form-select {
    padding: 16.5px 12px;
}

/* Style for the Reset All button */
.btn-reset-all {
    background-color: transparent; /* Transparent background */
    color: #007bff; /* Blue text color */
    border: none; /* No border */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
    padding: 5px 10px; /* Add some padding */
    text-decoration: underline; /* Optional: Add underline for emphasis */
    height: 40px; /* Set height */
    margin-top: 20px;
    align-self: center;
}

.btn-reset-all:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: none; /* Remove underline on hover */
}
.blog-cards {
    padding: 42px 0 54px;
    row-gap: 42px;
}
.card-link {
    color: transparent;
    text-decoration: none;
}
/* Ensure the card content is structured properly */
.card {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    height: 100%; /* Ensure the card takes full height */
    border-radius: 12px;
    padding: 24px;
}

.blogs .card {
    padding-bottom: 0;
}

.card-body {
    flex: 1; /* Allow the body to take up available space */
    display: flex;
    flex-direction: column; /* Stack content inside the body */
    padding-bottom: 27px;
}

.card-body .blogger {
    margin-top: auto; /* Push the blogger section to the bottom */
    display: flex;
    align-items: center; /* Align items vertically */
    gap: 10px; /* Add spacing between the image and text */
}

.blogger-image {
    width: 40px; /* Adjust the size of the blogger image */
    height: 40px;
    border-radius: 50%; /* Make the image circular */
}

.blogger-info h6 {
    margin: 0; /* Remove margin from the name */
    font-size: 14px; /* Adjust font size */
}


.card-body .card-sub-text {
    color:  #3479FF;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;

}
.card-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.card-text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
}
.blogger {
    display: flex;
    column-gap: 12px;
}
.blogger img {
    height: 100%;
}

.blogger-info p, .blogger-info h6{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (min-width: 1200px){
    .section-header{
        gap: 80px;
    }

    .blog-category {
        width: 230px;
    }
}

@media (max-width: 576px) {
    .blogs {
        padding-top: 90px;
    }
    .blog-section {
        padding: 32px 19px 0;
    }
    .section-header {
        flex-direction: column;
    }
    .dropdown-section {
        flex-direction: column;
        row-gap: 24px;
    }
    .btn-reset-all {
        align-self: flex-start !important;
        margin-top: 0 !important;
    }

    .blog-category {
        width: 100%;
    }
    .year-select, .month-select {
        width: 50%;
    }
    .section-header .heading-large {
        font-size: 40px;
        line-height: 42px;
        margin-bottom: 32px;
    }
}
