/* News page styles - based on team.css pattern */
.news-profile {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    margin: 3rem 6rem;
    padding-bottom: 3rem;
    position: relative;
}

/* Style for news image */
.news-profile img {
    width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

/* Style for the text content */
.news-content {
    flex: 1;
}

/* News title styling - hyperlinked */
.news-title {
    margin-top: 0;
    color: #1c80ab;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.news-title a {
    color: #1c80ab;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #145a7a;
    text-decoration: underline;
}

/* News date styling */
.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Overall page margins */
.news-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
}

.news-container h1 {
    color: #1c80ab;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-profile {
    flex-direction: column;
    margin: 2rem;
    }
    
    .news-profile img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    }

    .news-content {
    text-align: left;
    }
}

/* Read more link styling */
.read-more {
    color: #1c80ab;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}