/* -----------------------
   Page title
------------------------*/
.page-title {
    font-size: 36px;
    margin: 0;
}

/* -----------------------
   Blog grid
------------------------*/
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* -----------------------
   Blog title
------------------------*/
.blog-title-wrapper {
    transition: height 0.2s ease;
}

.blog-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-decoration: underline;
    color: #000;
}

.blog-title:hover {
    color: #4a607a;
}

/* -----------------------
   Clamp text
------------------------*/
.clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* -----------------------
   Responsive font scaling
------------------------*/
@media (min-width: 1280px) {
    .blog-title {
        font-size: 24px;
    }
}

@media (min-width: 1536px) {
    .blog-title {
        font-size: 26px;
    }
}

/* =========================
   Blog Articles
========================= */

.blog-article h2 {
    margin-top: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    color: #af1717;
}
.blog-article h3 {
    margin: 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #af1717;
}
.blog-article a {
    color: #af1717;
    text-decoration: underline;
}
