/* Featured Content Card */
.fc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #3a393a;
    border-radius: 10px;
    padding: 15px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 15px 10%;
}
.fc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250,109,12,0.3);
}

.fc-card-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.fc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-card-content {
    flex: 1;
    min-width: 0;
}
.fc-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    color:#fff;
}
.fc-card-title a {
    color: #fff;
    text-decoration: none;
}
.fc-card-title a:hover {
    text-decoration: underline;
}

.fc-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.fc-card-description {
    font-size: 13px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    font-weight: 600;
}

.fc-card-badge {
    flex-shrink: 0;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    background: #fa6d0c;
    color: #fff;
}
.fc-card-badge:hover {

    color: #fa6d0c;
    background: #fff;
}

@media (max-width: 480px) {
    .fc-card {
        flex-direction: column;
        align-items: flex-start;
        margin: 15px 5%;
    }
    .fc-card-image {
        width: 100%;
        height: 160px;
    }
    .fc-card-body {
        flex-direction: column;
        align-items: flex-start;
    }
}