.featured-post-section {
    padding: 60px 20px;
    background: #fff;
}

.featured-post-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.featured-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-post-date {
    font-size: 13px;
    color: rgb(58, 79, 102);
}

.featured-post-title a {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(25, 42, 61);
    text-decoration: none;
}

.featured-post-title a:hover {
    color: #618cfb;
}

.featured-post-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(58, 79, 102);
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(25, 42, 61);
}

.featured-post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-post-image {
    flex: 1.4;
}

.featured-post-image a {
    display: block;
}

.featured-post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 640px) {
    .featured-post-inner {
        flex-direction: column-reverse;
    }
}