main {
    font-family: var(--fa);
    .bloc {
        width: 90%;
        font-size: 16px;
        padding: 7.5px 10px;
        text-align: center;
        margin: 0 auto 20px auto;
        &.info {
            color: var(--dc);
            background: rgba(0, 0, 0, 4%);
        }
        &.alert {
            color: #a00;
            background: #fdd;
            margin: 10px auto 20px auto;
        }
        .box-warning {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            .warning-line {
                color: var(--rc);
                .warning-word {
                    font-weight: bold;
                    text-transform: uppercase;
                }
            }
            .flex-links {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 60%;
                a {
                    text-decoration: none;
                    color: var(--fdc);
                    &::before {
                        content: "»";
                        padding-right: 10px;
                        opacity: 0;
                        transition: 0.2s;
                    }
                    &::after {
                        content: "«";
                        padding-left: 10px;
                        opacity: 0;
                        transition: 0.2s;
                    }
                    &:hover {
                        color: #005a9c;
                        &::before {
                            margin-right: -5px;
                            opacity: 1;
                            transition: 0.2s;
                        }
                        &::after {
                            margin-left: -5px;
                            opacity: 1;
                            transition: 0.2s;
                        }
                    }
                }
            }
        }
    }
    h1 {
        text-transform: uppercase;
        text-align: center;
        color: var(--mc);
        font-size: 30px;
    }
    .container-docs {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
        align-items: center;
        padding: 0 50px;
        .doc {
            width: 300px;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--mc);
            border-radius: 15px;
            padding: 10px;
            box-sizing: border-box;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            text-align: center;
            text-decoration: none;
            .picture {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    max-width: 100%;
                    max-height: 150px;
                    object-fit: contain;
                }
            }
            .name {
                font-size: 20px;
                font-family: var(--fm);
                font-weight: bold;
                color: var(--mc);
            }
            transition: all ease-in-out 0.3s;
            &:hover {
                border: 1px solid transparent;
                border-radius: 20px;
                box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            }
        }
    }
}

@media (max-width: 768px) {
    main {
        h1 {
            font-size: 25px;
        }
        .bloc {
            width: 90%;
            font-size: 15px;
            .box-warning {
                .flex-links {
                    flex-direction: column;
                    width: 90%;
                }
            }
        }
        .container-club {
            .club {
                padding: 7.5px;
            }
        }
    }
}