.page-tintc {
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
}

.page-tintc__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding to avoid header overlap */
    background-color: #017439;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.page-tintc__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.page-tintc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-tintc__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: #017439; /* Ensure text background is solid */
}

.page-tintc__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    /* Use clamp for responsive font size if necessary, but avoid fixed large sizes */
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-tintc__hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #FFFFFF;
}

.page-tintc__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-tintc__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
}

.page-tintc__btn--primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-tintc__btn--primary:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-tintc__btn--secondary {
    background-color: transparent;
    color: #FFFF00;
    border: 2px solid #FFFF00;
}

.page-tintc__btn--secondary:hover {
    background-color: #FFFF00;
    color: #017439;
    transform: translateY(-2px);
}

.page-tintc__news-list-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
}

.page-tintc__section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #017439;
    margin-bottom: 40px;
    font-weight: bold;
}

.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: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

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

.page-tintc__card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-tintc__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure image meets minimum size requirement */
    min-height: 200px;
}

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

.page-tintc__card-date {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 10px;
}

.page-tintc__card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #017439;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-tintc__card-title:hover {
    text-decoration: underline;
}

.page-tintc__card-excerpt {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-tintc__read-more {
    font-size: 1rem;
    font-weight: bold;
    color: #C30808;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    color: #a30606;
}

.page-tintc__view-all-wrapper {
    margin-top: 20px;
}

.page-tintc__cta-banner {
    background-color: #017439;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.page-tintc__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-tintc__cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #FFFFFF;
}

@media (max-width: 849px) {
    .page-tintc__hero-content {
        padding: 30px 15px;
    }

    .page-tintc__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-tintc__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-tintc__news-card {
        margin-bottom: 20px;
    }

    .page-tintc__card-image {
        height: 180px;
        min-width: 200px;
        min-height: 200px;
    }

    .page-tintc__news-list-section, .page-tintc__cta-banner {
        padding: 40px 15px;
    }

    /* Mobile overflow prevention */
    .page-tintc__hero-image, .page-tintc__card-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-tintc__hero-content {
        padding: 25px 10px;
    }

    .page-tintc__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-tintc__hero-description {
        font-size: 1rem;
    }

    .page-tintc__section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-tintc__card-image {
        height: 200px;
        min-width: 200px;
        min-height: 200px;
    }

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

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

    .page-tintc__btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    /* Ensure content area images do not cause horizontal scroll */
    .page-tintc__news-list-section img, .page-tintc__cta-banner img {
        max-width: 100%;
        height: auto;
    }
}