.yournews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.yournews-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yournews-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.yournews-image {
    width: 100%;
    height: 142px;
}

.yournews-content {
    padding: 15px;
}

.yournews-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.yournews-title {
    margin: 0;
    font-size: 1.2em;
}

.yournews-title a {
    color: inherit;
    text-decoration: none;
}

.yournews-title a:hover {
    color: #2a6496;
}