.page-tintc {
    padding-top: 10px; /* Small top padding for internal pages */
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-tintc__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Consistent with page background */
}

.page-tintc__hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px; /* Space between image and content */
}

.page-tintc__hero-content {
    max-width: 90%;
    padding: 0 20px;
    color: #1F2D3D; /* Main text color, as it's now on a light background */
}

.page-tintc__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Using clamp for H1 font size */
}

.page-tintc__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-tintc__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-tintc__news-list-section {
    padding: 20px 0 60px;
}

.page-tintc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-tintc__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-tintc__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #2F6BFF;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-tintc__news-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-tintc__news-image {
    width: 100%;
    height: 220px; /* Ensures image is not too small */
    object-fit: cover;
    display: block;
}

.page-tintc__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-tintc__news-date {
    font-size: 0.9rem;
    color: #6FA3FF;
    margin-bottom: 10px;
    font-weight: 500;
}

.page-tintc__card-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.page-tintc__card-title a {
    color: #1F2D3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
    color: #2F6BFF;
}

.page-tintc__card-summary {
    font-size: 1rem;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-tintc__read-more {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    text-decoration: underline;
    color: #1F2D3D;
}

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

.page-tintc__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-tintc__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

@media (max-width: 768px) {
    .page-tintc__hero-content {
        padding: 0 20px;
        max-width: 95%;
    }

    .page-tintc__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-tintc__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-tintc__section-title {
        font-size: 1.8rem;
    }

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

    .page-tintc__news-image {
        height: 180px;
    }

    .page-tintc__card-title {
        font-size: 1.2rem;
    }

    .page-tintc__card-summary {
        font-size: 0.95rem;
    }

    /* Ensure images in content area are responsive and not too small */
    .page-tintc img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-tintc__hero-content {
        padding: 0 15px;
    }
    .page-tintc__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-tintc__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-tintc__section-title {
        font-size: 1.6rem;
    }
    .page-tintc__card-title {
        font-size: 1.1rem;
    }
    .page-tintc__news-image {
        height: 150px;
    }
}