.blog-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-gap: 30px;
}

.blog-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    transition: .25s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card__img {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
}

.blog-card__content {
    padding: 20px;
}

.blog-card__content h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.article-hero {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 30px;
}

.article-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.article-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 26px;
}
