.ft-recent-category-posts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ft-recent-category-posts .recent-post {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ft-recent-category-posts .post-thumbnail {
    width: 100%;
    max-width: 440px;
    height: auto;
    margin-bottom: 16px;
}

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

.ft-recent-category-posts .post-category {
    color: #A2006E;
    font-family: Archivo, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(12px, 1.5vw, 16px);
    line-height: clamp(14px, 2vw, 20px);
}

.ft-recent-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);
}

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

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

.ft-recent-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, 2vw, 16px);
    line-height: clamp(18px, 2.5vw, 24px);
    text-decoration: none;
    margin-top: 16px;
    width: fit-content;
}

.read-more-button:hover {
    background-color: #8E005A;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .ft-recent-category-posts .recent-post {
        flex-direction: row;
        align-items: center;
    }

    .ft-recent-category-posts .post-thumbnail {
        margin-bottom: 0;
    }

    .ft-recent-category-posts .post-content {
        margin-left: 32px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .ft-recent-category-posts {
        gap: 32px;
    }

    .ft-recent-category-posts .recent-post {
        gap: 32px;
    }
}
