.posts .swiper-wrapper {
    align-items: stretch;
}

.posts .swiper-wrapper .swiper-slide {
    height: auto;
}

.post-tile {
    background: var(--primary-off-white);
    max-width: 700px;
    height: 100%;
}

.post-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 40px;
}

.post-content h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: normal;
}

.post-content p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.post-content .button-link {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1280px) {
    .post-content {
        padding: 20px;
    }

    .post-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .post-content {
        padding: 24px 16px;
    }

    .post-content h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .post-content p {
        font-size: 14px;
    }

    .post-content .button-link {
        font-size: 14px;
    }

    .post-content .button-link img {
        width: auto;
        height: 16px;
    }
}