.blogs .blogs-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
    padding-top: 64px;
    padding-bottom: 64px;
    margin-right: auto;
    margin-left: auto;
}

.blogs .blogs-row .heading {
    font-size: 40px;
    font-weight: bolder;
    color: var(--color-9);
    margin: 0;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-semibold);
}

.blogs .card {
    width: calc(33.3333% - 16px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 16px rgb(9 24 26 / 4%);
    background-color: white;
}

.blogs .card:hover .image img {
    transform: scale(1.1);
}

.blogs .card .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 148px;
    overflow: hidden;
    background-color: #064e3b;
}

.blogs .card .image img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in;
}

.blogs .card .content {
    height: calc(100% - 148px);
    padding: 16px 16px 20px 16px;
    position: relative;
}

.blogs .card .content .row {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.blogs .card .content .category {
    color: white;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 8px;
    text-decoration: none;
    background-color: var(--primary);
}

.blogs .card .content .date {
    color: #17171c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.1rem;
    white-space: nowrap;
    font-family: var(--font-light);
}

.blogs .card .content .heading {
    color: #18181b;
    font-weight: 500;
    line-height: 1.4;
    max-width: 20em;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.blogs .card .content .read-more {
    color: #18181b;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.25;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 0.2em;
    text-underline-offset: 0.3em;
}

.blog-header {
    font-size: 48px;
    font-weight: bolder;
    color: var(--color-9);
    text-align: center;
    line-height: 1.2;
    font-family: var(--font-semibold);
    margin: 0;
    margin-bottom: 20px;
}


@media only screen and (max-width:600px) {

    .blogs .card {
        width: 100%;
    }

    .blogs .blogs-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blogs .blogs-row .heading {
        font-size: 36px;
    }
}

@media (min-width:481px) and (max-width:767px) {

    .blogs .card {
        width: 100%;
    }

    .blogs .blogs-row {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width:768px) and (max-width:1024px) {

    .blogs .card {
        width: calc(50% - 12px);
    }

    .blogs .blogs-row {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {

    .blogs .card {
        width: calc(50% - 12px);
    }

    .blogs .blogs-row {
        padding-left: 20px;
        padding-right: 20px;
    }
}