/*section 1 start.........................................................................................*/

.section1 .content {
    display: flex;
    margin-top: 20px;
    /* Adjust any other styles for the container as needed */
}

.section1 .right-section {
    flex: 1;
    margin-right: 40px;

}

.section1 .right-section img {
    width: 100%;
}

.section1 .left-section {
    flex: 1;
    /*margin-left: 40px;*/
}

.section1 .content_header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Add this line */
}

.section1 .content_header h2 {
    font-style: normal;
    font-weight: 700;
    line-height: 165.523%;
}

.section1 .left-section .date {
    color: var(--color-date);
    margin-top: 20px;
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    flex: 1;
    /* Added to make it take available space */
}

.section1 .left-section .h2_des {
    color: var(--color-black);
    font-size: var(--font-size-default);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 34.1px */
    flex-direction: column;
}

.section1 .left-section .read-more {
    border-radius: 8px;
    display: inline-flex;
    /* Use inline-flex */
    align-items: center;
    /* Vertically center items */
    gap: 0.324rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    padding: 5px 10px;
}


/*section 1 end===============================================================================================*/

/*section 2 start .................................................................................................*/

.section2 .content_header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Add this line */
    padding-bottom: 20px;
}

.section2 .content {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    gap: unset !important;
}


.section2 .content .box {
    padding: 10px;
    border-radius: 10px;
    background: var(--color-white);
    border: 1px solid #EEE;
    flex-basis: calc(33.33% - 20px);
    /* Distribute 3 boxes in a row */
    margin: 10px;
    /* Add margin to create space between boxes */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /*text-align: center;*/
}


.section2 .content .box h3 {
    margin-top: 10px;
    font-weight: 600;
}

.section2 .content .box img {
    filter: none !important;
}

.section2 .content .box .thumbnail_image {
    flex: 1;
}

.section2 .content .box .read-more {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    /* Adjust as needed for spacing */
    margin-bottom: 10px;
}

.section2 .content .box .date {
    color: var(--color-date);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    flex: 1;
    /* Added to make it take available space */
}

.section2 .content .box .h3_des {
    color: var(--color-dark-black);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
}

.section2 .content .box .read-more img {
    margin-left: 5px;
}

.section2 .see-more {
    display: flex;
    /* Use flexbox to arrange elements in a row */
    justify-content: flex-end;
    /* Align content to the right */
    align-items: center;
    /* Vertically center content */
    color: var(--color-date);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
    margin-top: 20px;
}

.section2 .see-more img {
    margin-left: 5px;
    /* Add some spacing between the text and the image */
}

.section2 .see-more span:hover {
    color: var(--color-orange);
}

.section2 .box .read-more a:hover {
    color: var(--color-orange);
}

/* Add styles for the pagination */
.section2 .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    /* Adjust the margin as needed */
}

.section2 .page-link {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background: var(--color-white);
    color: var(--color-date);
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    font-size: var(--font-size-default);
}

.section2 .page-link img {
    width: 8px;
}

.section2 .page-link.active {
    border-radius: 9px;
    background: var(--color-pagination-background);
    color: var(--color-orange);
}

.section2 .pagination a:hover {
    border-radius: 9px;
    background: var(--color-pagination-background);
    color: var(--color-orange);
}

/*section 2 ends=====================================================================================================*/


/*responsive code start..................................................................................................*/

/* Section 1 responsiveness */
@media screen and (max-width: 768px) {
    .section1 .content {
        flex-direction: column;
    }

    .section1 .left-section,
    .section1 .right-section {
        margin: 0;
    }

    /* Add other responsive adjustments for Section 1 */
    .section2 .content {
        flex-direction: column;
    }

    .section2 .content .box {
        flex-basis: calc(50% - 20px);
    }

    .section2 .see-more {
        justify-content: center;
        margin-top: 10px;
    }

}