.blogs .entry {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 16px solid var(--primary);
}

.blogs .entry-header {
    width: 100%;
    height: auto;
    background: var(--primary);
    padding-top: 15px;
    padding-bottom: 15px;
}

.blogs .entry-header .menu-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 80px;
}

.blogs .entry-header .menu-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-0);
    font-family: var(--font-regular);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blogs .entry-header .menu-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: fit-content;
    margin-left: 6px;
    margin-right: 6px;
}

.blogs .entry-header .menu-item:hover {
    text-decoration: underline;
}

.blogs .entry-wrap {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.blogs .entry-wrap .media {
    width: 100%;
    height: 100%;
    background: #32313d;
}

.blogs .entry-wrap .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    appearance: none;
    opacity: 0.4;
}

.blogs .entry-wrap .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.blogs .entry-wrap .content .title {
    font-weight: 800;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--color-0);
    text-align: left;
    font-family: var(--font-bold);
    margin-bottom: 0;
}

.blogs .entry-wrap .content .title:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -1px;
    width: 170px;
    height: 16px;
    background-color: var(--primary);
}

.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 .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 .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;
}

.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: #17171c;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    padding: 4px 8px;
    margin-right: 8px;
    text-decoration: none;
    background-color: #bdffeb;
}

.blogs .card .content .date {
    color: #17171c;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.1rem;
    white-space: nowrap;
}

.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: #4cfdc7;
    text-decoration-thickness: 0.2em;
    text-underline-offset: 0.3em;
}

.blog-header {
    font-weight: 800;
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
}


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

    .blogs .card {
        width: 100%;
    }

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

    .blogs .entry-wrap {
        height: 270px;
    }

    .blogs .entry-wrap .content {
        align-items: center;
        padding-left: 20px;
        padding-bottom: 0;
    }

    .blogs .entry-wrap .content .title {
        font-size: 48px;
        margin-top: 0;
    }

    .blogs .entry-header .menu-list {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }



}

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

    .blogs .card {
        width: 100%;
    }

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

    .blogs .entry-wrap {
        height: 270px;
    }

    .blogs .entry-wrap .content {
        align-items: center;
        padding-left: 20px;
        padding-bottom: 0;
    }

    .blogs .entry-wrap .content .title {
        font-size: 48px;
        margin-top: 0;
    }

    .blogs .entry-header .menu-list {
        margin-left: 0;
        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;
    }

    .blogs .entry-wrap .content {
        padding-left: 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;
    }

    .blogs .entry-wrap .content {
        padding-left: 20px;
    }

}