/* =====================================================
   ACCUEIL TTU
===================================================== */

.ttu-home {

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 50px 25px 80px;

    box-sizing: border-box;
}

/* =====================================================
   HERO — PAGE D'ACCUEIL
===================================================== */

.ttu-home-hero {
    position: relative;

    width: 100%;
    min-height: 390px;

    display: flex;
    align-items: center;

    margin: 0 0 70px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #e65c00 0%,
            #b84b55 48%,
            #663a91 100%
        );

    /*
    background-image: url("images/hero-accueil.jpg");
    */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Décor lumineux */

.ttu-home-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    pointer-events: none;
}


/* Deuxième élément décoratif */

.ttu-home-hero::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: 15%;
    bottom: -240px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    pointer-events: none;
}


/* Voile */

.ttu-home-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.20) 0%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.15) 100%
        );

    pointer-events: none;
}


/* Contenu */

.ttu-home-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    padding: 70px 30px;

    box-sizing: border-box;

    color: #fff;
}


/* Petit label */

.ttu-home-hero-label {
    display: block;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.82rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.15em;
}


/* Titre */

.ttu-home-hero h1 {
    max-width: 800px;

    margin: 0;

    color: #fff;

    font-size: clamp(3.2rem, 7vw, 5.8rem);

    line-height: 0.92;

    font-weight: 900;

    letter-spacing: -0.045em;
}


/* Description */

.ttu-home-hero p {
    max-width: 620px;

    margin: 25px 0 30px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.15rem;

    line-height: 1.55;
}


/* Boutons */

.ttu-home-hero-links {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.ttu-home-hero-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 21px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.70);

    border-radius: 5px;

    color: #fff;

    background: transparent;

    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.ttu-home-hero-link:hover {
    transform: translateY(-2px);

    background: #fff;

    border-color: #fff;

    color: #e65c00;
}


/* Bouton principal */

.ttu-home-hero-link-primary {
    background: #fff;

    border-color: #fff;

    color: #e65c00;
}


.ttu-home-hero-link-primary:hover {
    background: transparent;

    border-color: #fff;

    color: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .ttu-home-hero {
        min-height: 350px;

        margin-bottom: 55px;
    }

    .ttu-home-hero-content {
        padding: 60px 25px;
    }

}


@media (max-width: 600px) {

    .ttu-home-hero {
        min-height: 330px;

        margin-bottom: 45px;
    }

    .ttu-home-hero-content {
        padding: 50px 20px;
    }

    .ttu-home-hero h1 {
        font-size: 3.1rem;
    }

    .ttu-home-hero p {
        margin-top: 20px;

        font-size: 1rem;
    }

    .ttu-home-hero-links {
        flex-direction: column;

        align-items: flex-start;
    }

    .ttu-home-hero-link {
        width: auto;
    }

}
/* =====================================================
   EN-TÊTES DE SECTIONS
===================================================== */

.ttu-home-section-header {

    margin-bottom: 28px;

    position: relative;
}

.ttu-home-label {

    display: block;

    margin-bottom: 6px;

    color: #e65c00;

    font-size: 0.8rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.ttu-home-title {

    margin: 0;

    color: #222;

    font-size: 2rem;

    line-height: 1.15;

    font-weight: 800;
}


/* =====================================================
   ARTICLE PRINCIPAL
===================================================== */

.ttu-home-featured {

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, 1fr);

    gap: 35px;

    margin-bottom: 45px;

    padding-bottom: 40px;

    border-bottom: 1px solid #ddd;
}

.ttu-home-featured-image {

    display: block;

    overflow: hidden;
}

.ttu-home-featured-image img {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 360px;

    object-fit: cover;
}

.ttu-home-featured-content {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.ttu-home-meta {

    display: flex;

    gap: 15px;

    margin-bottom: 10px;

    color: #777;

    font-size: 0.82rem;
}

.ttu-home-featured-title {

    margin: 0 0 18px;

    font-size: 2.25rem;

    line-height: 1.08;
}

.ttu-home-featured-title a,
.ttu-home-card-title a,
.ttu-home-media-title a {

    color: inherit;

    text-decoration: none;

    transition: color 0.2s ease;
}

.ttu-home-featured-title a:hover,
.ttu-home-card-title a:hover,
.ttu-home-media-title a:hover {

    color: #e65c00;
}

.ttu-home-featured-excerpt {

    margin-bottom: 25px;

    font-size: 1.05rem;

    line-height: 1.6;
}

.ttu-home-read-more {

    align-self: flex-start;

    padding: 10px 18px;

    background: #e65c00;

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    border-radius: 5px;

    transition: background 0.2s ease;
}

.ttu-home-read-more:hover {

    background: #6d3bb8;
}


/* =====================================================
   GRILLE ARTICLES
===================================================== */

.ttu-home-news-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.ttu-home-card {

    overflow: hidden;

    border: 1px solid #ddd;

    background: #fff;
}

.ttu-home-card-image {

    display: block;

    overflow: hidden;
}

.ttu-home-card-image img {

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.ttu-home-card-content {

    padding: 18px;
}

.ttu-home-card-title {

    margin: 0 0 12px;

    font-size: 1.25rem;

    line-height: 1.2;
}

.ttu-home-card-excerpt {

    font-size: 0.92rem;

    line-height: 1.5;
}


/* =====================================================
   RADIO
===================================================== */

.ttu-home-radio {

    margin: 75px 0;

    padding: 35px;

    background: #f5f5f5;

    border-top: 4px solid #e65c00;
}

.ttu-home-radio-player {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}

.ttu-home-radio-player iframe {

    display: block;

    width: 100%;

    height: 165px;

    border: 0;
}


/* =====================================================
   PHOTOS / VIDÉOS
===================================================== */

.ttu-home-media-section {

    margin-top: 70px;

    padding-top: 35px;

    border-top: 1px solid #ddd;
}

.ttu-home-section-header {

    display: flex;

    flex-wrap: wrap;

    align-items: baseline;

    column-gap: 20px;
}

.ttu-home-section-header .ttu-home-label {

    width: 100%;
}

.ttu-home-section-link {

    margin-left: auto;

    color: #6d3bb8;

    font-weight: 700;

    text-decoration: none;
}

.ttu-home-section-link:hover {

    color: #e65c00;
}

.ttu-home-media-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.ttu-home-media-card {

    border: 1px solid #ddd;

    background: #fff;
}

.ttu-home-media-image {

    display: block;

    overflow: hidden;
}

.ttu-home-media-image img {

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.ttu-home-media-title {

    margin: 18px 18px 10px;

    font-size: 1.2rem;

    line-height: 1.25;
}

.ttu-home-media-card .ttu-home-meta {

    padding: 0 18px 18px;

    margin-bottom: 0;
}


/* =====================================================
   MOBILE
===================================================== */

@media ( max-width: 900px ) {

    .ttu-home-featured {

        grid-template-columns: 1fr;

    }

    .ttu-home-news-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}

@media ( max-width: 600px ) {

    .ttu-home {

        padding: 35px 18px 60px;

    }

    .ttu-home-title {

        font-size: 1.6rem;

    }

    .ttu-home-featured-title {

        font-size: 1.8rem;

    }

    .ttu-home-news-grid,
    .ttu-home-media-grid {

        grid-template-columns: 1fr;

    }

    .ttu-home-featured-image img {

        min-height: 250px;

    }

    .ttu-home-radio {

        margin: 50px 0;

        padding: 20px;

    }

}

/* =====================================================
   SÉPARATEUR ENTRE SECTIONS
===================================================== */

.ttu-home-divider {

    width: 100%;

    height: 1px;

    margin: 0 0 70px;

    background: #ddd;
    margin-top:20px;
}

