.home-featured-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--sk-border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.home-featured-card {
    display: grid;
    grid-template-columns: minmax(320px, 400px) 1fr;
    gap: 32px;
    align-items: center;
    padding: 28px;
    background: #fff;
}

.home-featured-card .hfc-thumb {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.home-featured-card .hfc-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    transition: transform 0.35s ease;
}
.home-featured-card-link:hover .hfc-thumb img {
    transform: scale(1.03);
}

.home-featured-card .hfc-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hfc-title {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.25;
    margin: 0;
}
.hfc-excerpt {
    margin: 0;
    color: var(--sk-muted, #555);
    line-height: 1.7;
    font-size: clamp(15px, 1.4vw, 17px);
}

.hfc-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.hfc-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    user-select: none;
}
.hfc-btn-primary {
    background: var(--sk-accent, #0B5CAB);
    color: #fff;
}
.hfc-btn-ghost {
    background: transparent;
    color: var(--sk-accent, #0B5CAB);
    border: 1px solid currentColor;
}

@media (max-width: 900px) {
    .home-featured-card {
    grid-template-columns: 1fr;
    padding: 20px;
    }
}
