.has-waves-subpage main > .container {
    padding-top: clamp(2.5rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(4rem, 7vw, 6rem) !important;
}

.our-blog {
    --blog-gap: .9rem;
}

.our-blog .section-row {
    row-gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.our-blog .section-title h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.1;
}

.our-blog .post-item {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(31, 34, 41, .08);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(31, 34, 41, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.our-blog .post-item:hover {
    border-color: rgba(31, 34, 41, .14);
    box-shadow: 0 14px 38px rgba(31, 34, 41, .13);
    transform: translateY(-3px);
}

.our-blog .post-featured-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex: 0 0 auto;
    background: #ececec;
}

.our-blog .post-featured-image figure,
.our-blog .post-featured-image figure > * {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.our-blog .post-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.our-blog .post-item:hover .post-featured-image img { transform: scale(1.035); }

.our-blog .post-item-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: .55rem;
    padding: 1rem 1.15rem 1.25rem;
}

.our-blog .post-item-meta { margin-top: .15rem; }
.our-blog .post-item-meta ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--blog-gap);
    margin: 0;
    padding: 0;
    list-style: none;
    color: #777b82;
    font-size: .82rem;
}

.our-blog .post-item-meta li {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: .5rem;
}

.our-blog .post-item-meta .text-accent { color: var(--primary-color) !important; font-weight: 700; text-transform: uppercase; }
.our-blog .post-item a { color: inherit; text-decoration: none; }
.our-blog .post-item a:hover { color: var(--primary-color); }
.our-blog .post-item-content h2 { margin: .25rem 0 .65rem; color: #25282f; font-size: 1.2rem; line-height: 1.35; }
.our-blog .post-item-content p { margin: 0; color: #686b72; line-height: 1.65; }
.our-blog .row > [class*="col-"] { display: flex; }
.our-blog .row > [class*="col-"] > * { width: 100%; }

.our-blog form[role="search"] .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .2rem rgba(var(--rgb-primary), .15);
}

.our-blog form[role="search"] .btn-dark {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

@media (max-width: 575.98px) {
    .our-blog .post-item-meta ul { gap: .6rem; font-size: .78rem; }
}
