.page-tintc {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-tintc__hero-section {
    display: flex;
    flex-direction: column; /* Ensures image is above content in DOM order */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #C61F1F 0%, #E53030 100%);
    overflow: hidden;
}

.page-tintc__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    max-width: 1920px; /* Constrain hero image width */
}

.page-tintc__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.page-tintc__hero-content {
    padding: 20px;
    max-width: 800px; /* Constrain text width */
}

.page-tintc__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F3C54D;
}

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

/* News List Section */
.page-tintc__news-list-section {
    padding: 60px 0;
    background-color: #140C0C;
}

.page-tintc__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #F3C54D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.page-tintc__news-card {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-tintc__news-card img {
    width: 100%;
    height: 225px; /* Fixed height for consistency, object-fit for aspect ratio */
    object-fit: cover;
    display: block;
    filter: none;
    min-width: 200px;
    min-height: 200px;
}

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

.page-tintc__card-title {
    font-size: 1.25rem;
    color: #FFF1E8;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-tintc__card-meta {
    font-size: 0.9rem;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-tintc__card-excerpt {
    font-size: 1rem;
    color: #FFF1E8;
}

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

.page-tintc__view-all-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.page-tintc__view-all-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%); /* Invert gradient on hover */
}

/* CTA Section */
.page-tintc__cta-section {
    background-color: #2A1212;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #6A1E1E;
}

.page-tintc__cta-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
    color: #F3C54D;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-tintc__cta-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #FFF1E8;
}

.page-tintc__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-tintc__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #140C0C;
}

.page-tintc__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-tintc__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 176, 74, 0.3);
}

.page-tintc__btn--secondary {
    background-color: #7E0D0D;
    color: #FFF1E8;
    border: 1px solid #6A1E1E;
}

.page-tintc__btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(126, 13, 13, 0.3);
    background-color: #C61F1F;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-tintc__hero-content {
        padding: 15px;
    }

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

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

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

    .page-tintc__news-card img {
        height: 200px;
    }

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

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

    .page-tintc__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-tintc__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-tintc__hero-banner img,
    .page-tintc__news-card img {
        max-width: 100%;
        height: auto;
    }
    .page-tintc__container {
        padding: 15px;
    }
    .page-tintc__news-list-section,
    .page-tintc__cta-section {
        padding: 40px 0;
    }
}

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

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

    .page-tintc__description {
        font-size: 0.95rem;
    }

    .page-tintc__section-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

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

    .page-tintc__news-card img {
        height: auto; /* Allow height to adjust naturally */
        min-height: 200px;
    }

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

    .page-tintc__card-excerpt {
        font-size: 0.9rem;
    }

    .page-tintc__view-all-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

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

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

    .page-tintc__btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-tintc__news-card img {
    min-width: 200px;
    min-height: 200px;
}

/* Override for smaller screens if needed, but maintain min-size */
@media (max-width: 768px) {
    .page-tintc__news-card img {
        width: 100%; /* Ensure responsiveness */
        height: auto; /* Adjust height proportionally */
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }
}