/* General styles for the Thể Thao page */
.page-ththao {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

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

/* Hero Section */
.page-ththao__hero-section {
    padding-top: 10px; /* Small top padding as per rule, body handles header offset */
    padding-bottom: 40px;
    text-align: center;
    background-color: #2A1212; /* Card BG, a darker tone for the hero */
}

.page-ththao__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold for main title */
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
}

.page-ththao__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF1E8;
}

.page-ththao__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #140C0C; /* Dark text for contrast on gold button */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}

.page-ththao__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-ththao__image-wrapper {
    margin: 40px auto 0 auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-ththao__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filters are applied */
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
}

/* Section Titles */
.page-ththao__section-title {
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #E53030; /* Auxiliary color for section titles */
    text-align: center;
    position: relative;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Using clamp for H2 */
}

.page-ththao__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F3C54D; /* Gold underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Text Content */
.page-ththao__text-content {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #FFF1E8;
}

/* Grid Layout for Sports Types */
.page-ththao__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-ththao__sport-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-ththao__sport-card:hover {
    transform: translateY(-5px);
}

.page-ththao__card-image-wrapper {
    margin: 0;
    overflow: hidden;
}

.page-ththao__card-image-wrapper img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no CSS filters are applied */
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
}

.page-ththao__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #F3C54D; /* Gold for card titles */
    padding: 15px 20px 5px;
}

.page-ththao__card-description {
    font-size: 0.95em;
    color: #FFF1E8;
    padding: 0 20px 20px;
}

/* Tips List */
.page-ththao__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-ththao__list-item {
    background-color: #2A1212; /* Card BG */
    border-left: 5px solid #E53030; /* Auxiliary color accent */
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-ththao__list-item-title {
    font-size: 1.2em;
    color: #F3C54D; /* Gold for list item titles */
    margin-bottom: 10px;
}

.page-ththao__list-item-text {
    font-size: 0.95em;
    color: #FFF1E8;
}

/* Bottom CTA Section */
.page-ththao__cta-section--bottom {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #2A1212; /* Card BG, a darker tone for the CTA */
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-ththao__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Adjust H1 for smaller screens */
    }
    .page-ththao__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem); /* Adjust H2 for smaller screens */
    }
    .page-ththao__card-title {
        font-size: 1.2em;
    }
    .page-ththao__card-image-wrapper img {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-ththao__container {
        padding: 0 15px;
    }

    /* Important: Mobile overflow fix for all images in content area */
    .page-ththao img {
        max-width: 100%;
        height: auto;
    }
    .page-ththao__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-ththao__main-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .page-ththao__description {
        font-size: 1em;
    }
    .page-ththao__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-ththao__section-title {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
        margin-top: 40px;
        margin-bottom: 25px;
    }
    .page-ththao__grid-layout {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .page-ththao__card-image-wrapper img {
        
    }
    .page-ththao__sport-card {
        margin-bottom: 20px;
    }
    .page-ththao__list-item {
        padding: 15px;
    }
    .page-ththao__list-item-title {
        font-size: 1.1em;
    }
}