.page-title-wrap {
    padding: 65px 0;
    margin-bottom: 65px;
}

.page-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.page-title-wrap .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    text-align: center;
    font-size: 55px;
    font-family: 'Cormorant', serif;
    color: #0a2c0a;
}

.page-subtitle {
    text-align: center;
    font-size: 16px;
    max-width: 900px;
}

.articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 60px;
}

.blog-preview {
    width: calc(100% / 3 - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-preview-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-preview-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-preview-title {
    text-align: center;
}

.blog-preview-title-link {
    color: #000;
    text-decoration: none;
}

.blog-preview-title-link:hover {
    color: #000;
    text-decoration: none;
}

.blog-preview-description {
    text-align: center;
}

.blog-preview-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.blog-preview-btn {
    color: #7f8462;
    font-size: 16px;
    text-decoration: none;
}

@media(max-width: 768px){
    .articles{
        flex-direction: column;
    }

    .blog-preview{
        width: 100%;
    }
}
