.wn-section {
    margin-top: 10px;
}
.wn-title {
    text-align: center;
    margin-bottom: 16px;
    color: #333;
    letter-spacing: 1px;
}
.wn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 2000px;
    margin: 0 auto 20px;
}
.wn-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}
.wn-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}
.wn-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.wn-body {
    padding: 18px 16px 10px 16px;
}
.wn-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}
.wn-subheading {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}
.wn-desc {
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 10px;
}
.wn-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}
.wn-link {
    color: #4f8cff;
    font-weight: 500;
    text-decoration: none;
}
