.page-tintc {
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Background color from custom scheme */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
}

.page-tintc__hero-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; /* Enforce image above content */
    align-items: center;
    overflow: hidden; /* Ensure rounded corners clip content */
}

.page-tintc__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.page-tintc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Slightly rounded corners for the image */
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

.page-tintc__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-tintc__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, but not here by default */
}

.page-tintc__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

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

.page-tintc__section-title {
    font-size: 2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
}

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

.page-tintc__news-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-tintc__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be responsive */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

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

.page-tintc__card-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-tintc__card-meta {
    font-size: 0.9em;
    color: #6FA3FF; /* Auxiliary color for meta info */
    margin-bottom: 15px;
}

.page-tintc__card-excerpt {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-tintc__read-more-btn {
    display: inline-block;
    color: #2F6BFF; /* Main color for link */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__read-more-btn:hover {
    color: #6FA3FF; /* Auxiliary color on hover */
}

.page-tintc__view-all {
    text-align: center;
    margin-top: 40px;
}

.page-tintc__view-all-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 48px; /* Ensure buttons are not too small */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-tintc__view-all-btn:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-tintc__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #2F6BFF; /* Main color */
    border-radius: 12px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-tintc__cta-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-tintc__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #A5C4FF; /* Use Glow color for CTA button to stand out */
    color: #1F2D3D; /* Text Main for contrast */
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 48px; /* Ensure buttons are not too small */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-tintc__cta-button:hover {
    background: #6FA3FF; /* Auxiliary color on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-tintc {
        padding-bottom: 20px;
    }

    .page-tintc__hero-section {
        margin-bottom: 20px;
        padding: 15px;
    }

    .page-tintc__main-title {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .page-tintc__description {
        font-size: 1em;
    }

    .page-tintc__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-tintc__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-tintc__card-image {
        height: 200px; /* Adjust height for mobile */
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
    }

    .page-tintc__news-card img { /* Ensure all images within .page-tintc are responsive */
        max-width: 100%;
        height: auto;
    }

    .page-tintc__card-title {
        font-size: 1.1em;
    }

    .page-tintc__cta-section {
        padding: 30px 20px;
    }

    .page-tintc__cta-title {
        font-size: 1.8em;
    }

    .page-tintc__cta-description {
        font-size: 1em;
    }

    .page-tintc__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    /* Global content area image size constraint for mobile */
    .page-tintc img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Maintain minimum size for content images */
        min-height: 200px; /* Maintain minimum size for content images */
    }
    .page-tintc__hero-image {
        min-width: unset; /* Hero image can scale down more */
        min-height: unset;
    }
}

/* Ensure images within .page-tintc are not too small by default */
.page-tintc img:not(.page-tintc__hero-image) {
    min-width: 200px;
    min-height: 200px;
}