.wnr-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .wnr-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wnr-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.wnr-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.wnr-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.wnr-thumbnail {
    margin: 16px 16px 0 16px;
    padding: 0;
    background-color: transparent;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.wnr-thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: none;
    display: block;
    transition: transform 0.6s ease;
}

.wnr-item:hover .wnr-thumbnail img {
    transform: scale(1.05);
}

.wnr-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wnr-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.5;
    color: #333;
}

.wnr-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 auto 0;
}

.wnr-date {
    font-size: 14px;
    color: #999;
    margin: 16px 0 0 0;
    text-align: right;
}