.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content h2 {
    color: var(--main-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 0;
}

.entries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.entry {
    background: linear-gradient(135deg, #2d2d42 0%, var(--bg-color) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
}

.entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: var(--main-color);
}

.entry-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: none;
}

.entry-content {
    padding: 15px;
}

.entry-title {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.entry-date {
    color: var(--light-color);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}


@media (max-width: 1024px) {
    .entries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .entries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .entries-grid {
        grid-template-columns: 1fr;
    }
}