.diarioViaggio{
    padding: 118px 0px;
    background: #fff;
}
.titleSectionDiario {
    color: var(--Zaffiro, #2D5542);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0px;
    width: 100%;
    font-family: Jeames;
}
.cardBlog{
    position: relative;
}
.contentDiario {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px
}
.latestBlog {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: 100%;
    justify-content: center;
}
.cardBlog {
    height: 335px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    width: 20%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    flex-direction: column;
}
.bottomCard{
    background: linear-gradient(180deg, rgba(19, 31, 25, 0.00) 0%, rgba(19, 31, 25, 0.80) 100%);
    padding: 24px 16px;
    text-align: center;
}
.dataCard{
    color: var(--White-Sand, #F9F5EC);
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 10px */
    margin: 0px 0px 8px 0px;
}
.titleCardBlog{
    color: var(--White-Sand, #F9F5EC);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 13px */
    margin: 0px;
}
.categoryCard {
    width: max-content;
    margin: 18px auto 0;
    padding: 8px 8px;
    background: #fff;
    border-radius: 34px;
    line-height: 100%;
    font-size: 12px;
    text-transform: uppercase;
}



/* SMARTPHONE */
@media only screen and (min-width: 320px) and (max-width: 767px) {
.latestBlog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    justify-content: center;
    justify-items: center;
}
.cardBlog {
    width: 100%;
}
.latestBlog > div:last-child {
    display: none !important;
}
.diarioViaggio {
    padding: 72px 0px;
    background: #fff;
}
.contentDiario {
    gap: 24px;
}
.titleSectionDiario {
    font-size: 20px;
}
.bottomCard {
    padding: 16px 8px;
}
.titleCardBlog {
    font-size: 14px;
}
.cardBlog{
    height: 250px;
}
}