.page-header {
    background: linear-gradient(rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.8)), url('https://via.placeholder.com/1200x300') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.news-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-text {
    padding: 25px;
}

.category {
    display: inline-block;
    background-color: #ff9eb5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.news-text h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.4;
}

.news-text .date {
    color: #ff9eb5;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover::after {
    margin-left: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background-color: #ff6b9d;
    color: white;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        margin-bottom: 20px;
    }
}