/* General Styling for Tin Tức Page */
.page-tin-tuc {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background: var(--background-color, #ffffff); /* Inherit or default to white */
}

.page-tin-tuc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-tin-tuc__section {
    padding: 60px 0;
}

.page-tin-tuc__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #26A9E0; /* Primary brand color */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-tin-tuc__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-tin-tuc__article-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #26A9E0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-tin-tuc__article-sub-heading {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-tin-tuc__article-body {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-tin-tuc__article-body p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333333;
}

.page-tin-tuc__article-body a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-tin-tuc__article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.page-tin-tuc__image-center {
    text-align: center;
}

.page-tin-tuc__image-right {
    text-align: right;
}

/* Hero Section */
.page-tin-tuc__hero-section {
    position: relative;
    padding-top: 10px; /* Assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f8ff; /* Light background for contrast */
}