/* style/news.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login: #EA7C07;
    --background-color: #FFFFFF; /* Assuming shared.css defines body background, this is for other elements */
    --border-color: #e0e0e0;
}

.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light backgrounds */
    background-color: var(--background-color); /* Default background for main content area */
}

/* Ensure body padding-top is handled by shared.css, so main sections start with small top margin/padding */
.page-news__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 40px;
    text-align: center;
    background-color: var(--primary-color); /* Dark section uses primary color as background */
    color: var(--text-light); /* Light text for dark background */
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Desktop: cover to fill space */
    border-radius: 8px;
    margin-bottom: 30px;
    display: block;
}

.page-news__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-news__main-title {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-news__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}