.ft_centered_category_widget {
    margin:150px auto !important;
}

.ft-centered-category-posts {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    margin: auto;
    @media (min-width: 992px) {
        max-width: 80%;
    }
}

.ft-centered-category-posts .recent-post {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;

    @media (min-width: 768px) {
        flex-direction: row;
        }
}

.ft-centered-category-posts .post-thumbnail {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.ft-centered-category-posts .post-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.ft_centered_category_widget .category-title {
    color: var(--Black, #232536);
    font-family: Archivo, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 32px; /* space between title and posts */

}

.ft-centered-category-posts .post-title {
    color: #232536;
    font-family: Archivo, sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 28px);
    line-height: clamp(24px, 4vw, 40px);
    transform: translateY(-10px);
}

.ft-centered-category-posts .post-excerpt {
    color: #6D6E76;
    font-family: Archivo, sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    line-height: clamp(20px, 3vw, 28px);
}

.ft-centered-category-posts .post-meta {
    display: flex;
    gap: 5px;
    color: #4C4C4C;
    font-family: Archivo, sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: clamp(16px, 2vw, 20px);
}

.ft-centered-category-posts .post-meta .author-name {
    color: #A2006E;
}

.ft-centered-category-posts .read-more-button {
    display: flex;
    padding: 8px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #A2006E;
    color: white;
    font-family: Archivo, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: clamp(18px, 2vw, 24px);
    text-decoration: none;
    width: fit-content;
}

.ft-centered-category-posts img {
    width: 100%;
  aspect-ratio: 2.5/1;
  object-fit: cover;
  object-position: center;
}