.icw-card {
    background: #f8f9fb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e5e7eb;
}

.icw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icw-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.icw-content {
    padding: 20px;
}

.icw-icon {
    width: 60px;
    height: 60px;
    background: #fff5e4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icw-icon i {
    color: #f49800;
    font-size: 24px;
}

.icw-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827; font-family: 'Titillium Web';
}

.icw-link {
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;

}

.icw-link:hover {
    gap: 10px; 
}

.icw-card:hover a{ }