.page-tintc {
    background-color: var(--Deep-Navy, #08162B); /* Fallback if Deep Navy not explicitly defined in main palette */
    color: var(--Text-Main, #F3F8FF);
    padding-bottom: 40px;
}

/* Hero Section */
.page-tintc__hero-section {
    display: flex;
    flex-direction: column; /* Default for mobile, will change for desktop */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, no --header-offset */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.page-tintc__hero-visual {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
}

.page-tintc__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.page-tintc__hero-content {
    max-width: 800px;
}

.page-tintc__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--Text-Main, #F3F8FF);
}

.page-tintc__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--Text-Secondary, #AFC4E8);
    margin-bottom: 0;
}

/* News List Section */
.page-tintc__news-list-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-tintc__container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-tintc__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--Text-Main, #F3F8FF);
}

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

.page-tintc__news-card {
    background-color: var(--Card-BG, #10233F);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--Border, #244D84);
}

.page-tintc__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-tintc__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-tintc__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-tintc__card-content {
    padding: 20px;
}

.page-tintc__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--Text-Main, #F3F8FF);
    line-height: 1.4;
}

.page-tintc__card-date {
    font-size: 0.9rem;
    color: var(--Text-Secondary, #AFC4E8);
    margin-bottom: 15px;
    display: block;
}

.page-tintc__card-excerpt {
    font-size: 1rem;
    color: var(--Text-Secondary, #AFC4E8);
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-tintc__read-more {
    display: inline-block;
    color: var(--Auxiliary-Color, #1D5FD1); /* Using Auxiliary Color for read more link */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    color: var(--Glow, #4FA8FF);
}

.page-tintc__view-all {
    text-align: center;
}

.page-tintc__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-tintc__button--primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: var(--Text-Main, #F3F8FF);
}

.page-tintc__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}


/* CTA Section */
.page-tintc__cta-section {
    background-color: var(--Card-BG, #10233F); /* Using Card BG for CTA section */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--Divider, #1B3357);
}

.page-tintc__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--Text-Main, #F3F8FF);
}

.page-tintc__cta-description {
    font-size: 1.1rem;
    color: var(--Text-Secondary, #AFC4E8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-tintc__button--cta {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
    color: var(--Text-Main, #F3F8FF);
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.page-tintc__button--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 115, 246, 0.5);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .page-tintc__hero-section {
        flex-direction: row-reverse; /* Image on right, text on left for desktop */
        text-align: left;
        padding-top: 40px;
        gap: 40px;
    }

    .page-tintc__hero-content {
        flex: 1;
    }

    .page-tintc__hero-visual {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .page-tintc__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-tintc__news-list-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-tintc__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-tintc__card-image {
        height: 180px; /* Adjust height for smaller screens */
    }

    /* Ensure images in content areas are responsive */
    .page-tintc__news-card img,
    .page-tintc__hero-visual img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Content area images must be >= 200px. For card images, width:100% of a minmax(280px) container means it's >200px. */
/* The fixed height of 200px for card image also ensures it's not too small. */
.page-tintc__card-image {
    min-width: 200px; /* Enforce minimum size as per rules */
    min-height: 200px; /* Enforce minimum size as per rules */
    width: 100%; /* Ensure it fills its container */
    height: 200px; /* Maintain aspect ratio */
}

/* Override min-width/height for mobile if it causes overflow, but the general rule is to avoid <200px. */
@media (max-width: 768px) {
    .page-tintc__card-image {
        min-width: unset; /* Allow flexibility on mobile if needed, but still aim for larger images */
        min-height: unset;
        width: 100%;
        height: auto;
        max-width: 100%; /* Crucial for preventing overflow */
    }
    .page-tintc__hero-visual img {
        max-width: 100%;
        height: auto;
    }
}