/* ========================= */
/* COMMUNAUTÉ - PRÊT FEU GO */
/* ========================= */

.community-page{
    background:#080808;
    color:#F5EFE4;
}


.community-links{
    max-width:1120px;
    margin:0 auto;
    padding:90px 30px 120px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:32px;
}

.community-card{
    min-height:360px;
    padding:44px 34px;
    border:1px solid rgba(214,168,79,0.24);
    background:
        radial-gradient(circle at top, rgba(214,168,79,0.09), transparent 38%),
        linear-gradient(180deg, rgba(214,168,79,0.055), rgba(255,255,255,0.015));
    box-shadow:0 35px 80px rgba(0,0,0,0.45);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.community-icon{
    width:76px;
    height:76px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
    color:#D6A84F;
}

.community-icon svg{
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
    filter:drop-shadow(0 0 18px rgba(214,168,79,0.18));
}

.community-card h3{
    color:#D6A84F;
    font-size:30px;
    letter-spacing:1px;
    margin-bottom:22px;
}

.community-card p{
    color:#D8D0C5;
    font-size:19px;
    line-height:1.6;
    margin-bottom:34px;
    max-width:280px;
}

.community-card a{
    margin-top:auto;
    color:#D6A84F;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    word-break:break-word;
}

.community-card a:hover{
    text-decoration:underline;
}

@media (max-width:900px){

    .community-links{
        grid-template-columns:1fr;
        max-width:560px;
        padding:70px 24px 90px;
    }

    .community-card{
        min-height:auto;
        padding:38px 28px;
    }
}

@media (max-width:480px){
    .community-links{
        padding:55px 18px 75px;
        gap:24px;
    }

    .community-card{
        padding:34px 24px;
    }

    .community-icon{
        width:66px;
        height:66px;
        margin-bottom:20px;
    }

    .community-card h3{
        font-size:26px;
    }

    .community-card p{
        font-size:17px;
    }

    .community-card a{
        font-size:16px;
    }
}
