/* ============================================================
   FF Featured Post
   ============================================================ */
.ff-featured-post .ff-fp-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

/* --- Content (left) --- */
.ff-featured-post .ff-fp-content {
    flex: 1 1 auto;
    min-width: 0;
}

.ff-featured-post .ff-fp-badge {
    display: inline-block;
    margin-bottom: 28px;
    padding: 8px 18px;
    border-radius: 40px;
    background: #e7ecfb;
    color: #0b2f8f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.ff-featured-post .ff-fp-title {
    margin: 0 0 18px;
    color: #0a1f56;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.ff-featured-post .ff-fp-byline {
    margin: 0 0 22px;
    color: #6b7280;
    font-size: 16px;
}

.ff-featured-post .ff-fp-excerpt {
    margin: 0 0 32px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

.ff-featured-post .ff-fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    background: #0b2f8f;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.ff-featured-post .ff-fp-btn:hover {
    background: #0a2356;
    transform: translateY(-2px);
}

.ff-featured-post .ff-fp-btn-arrow {
    line-height: 1;
    transition: transform 250ms ease;
}

.ff-featured-post .ff-fp-btn:hover .ff-fp-btn-arrow {
    transform: translateX(4px);
}

/* --- Media (right) --- */
.ff-featured-post .ff-fp-media {
    position: relative;
    flex: 0 0 45%;
    max-width: 45%;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #10358f 0%, #0a2356 100%);
}

.ff-featured-post .ff-fp-frame {
    position: absolute;
    inset: 22px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    pointer-events: none;
}

.ff-featured-post .ff-fp-media img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-featured-post .ff-fp-monogram {
    position: relative;
    z-index: 1;
    color: #cdb583;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 120px;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ff-featured-post .ff-fp-title { font-size: 34px; }
    .ff-featured-post .ff-fp-monogram { font-size: 92px; }
}

@media (max-width: 767px) {
    .ff-featured-post .ff-fp-card {
        flex-direction: column !important;
        gap: 28px;
        padding: 24px;
    }
    .ff-featured-post .ff-fp-media,
    .ff-featured-post .ff-fp-content {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100%;
    }
    .ff-featured-post .ff-fp-media { min-height: 280px; }
    .ff-featured-post .ff-fp-title { font-size: 28px; }
    .ff-featured-post .ff-fp-monogram { font-size: 76px; }
}
