body {
    background-color: #fff0f5; /* Lavender Blush - приятный фоновый цвет */
    color: #333;
    font-family: 'Fredoka', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0;
}
.container {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    box-sizing: border-box;
}
h1 {
    font-family: 'Chewy', cursive;
    color: #ff69b4;
    text-align: center;
    font-size: 3em;
    margin-top: 0;
}
.news-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.news-title {
    font-size: 1.8em;
    color: #333;
    margin: 0;
}
.news-meta {
    font-size: 0.9em;
    color: #888;
    white-space: nowrap;
}
.news-content {
    line-height: 1.6;
}
.news-content ul {
    padding-left: 20px;
}
.news-content p, .news-content ul {
    margin-top: 0;
}
.back-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
}
