
.articles-wrapper p {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.articles-wrapper .head span {
    font-size: 16px;
    font-weight: 300;
    color: #58595B;
}

.articles-wrapper .img-wrapper {
    height: 250px;
}

.articles-wrapper .img-wrapper img {
    height: 100%;
    object-fit: cover;
}

.articles-wrapper .article-card {
    padding: 10px;
    border-radius: 0;
    border: 1px dashed #21665F;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.articles-wrapper .article-card:hover {
    border: 1px solid #21665F;
}

.articles-wrapper .article-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6em;
    color: #21665F;
}

.articles-wrapper a {
    text-decoration: none;
    color: #21665F;

}

.articles-wrapper .article-link {
    width: fit-content;
    padding: 10px 20px;
    border-radius: 10px 0 10px 0;
    border: 1px dashed #21665F;
}

.articles-wrapper .article-link:hover {
    border: 1px solid #21665F;
}

.articles-wrapper .show-all-articles {
    text-align: center;
}

.articles-wrapper .show-all-articles a {
    padding: 8px 40px;
    color: #fff;
    background-color: #21665F;
    border-radius: 10px 0 10px 0;
}