.participants-options__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.participants-options__button {
    width: 250px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E69E5F;
    font-family: "Bounded";
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid #E69E5F;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.participants-options__button--active {
    color: #FFFFFF;
    background: #E69E5F;
}

.participants-options__button--active {
    cursor: default;
}

.participants-options__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.participants-options__card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #2B2B2B;
    text-decoration: none;
    padding-bottom: 30px;
    cursor: pointer;
}

.participants-options__photo {
    width: 100%;
    aspect-ratio: 0.65;
    margin-bottom: 7px;
}

.participants-options__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.participants-options__title {
    color: #AEAAAA;
    font-family: "Manrope";
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
}

.participants-options__name {
    color: #2B2B2B;
    font-family: "Bounded";
    font-size: 22px;
    padding: 0 10px;
}

.participants-options__country {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #AEAAAA;
    font-family: "Manrope";
    font-size: 20px;
    font-weight: 600;
    padding: 0 10px;
}

.participants-options__more {
    width: 185px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #292929;
    font-family: "Manrope";
    text-decoration: none;
    border: 1px solid #292929;
    border-radius: 5px;
    margin: 0 auto;
}

@media (max-width: 1600px) {
    .participants-options__name {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .participants-options__cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .participants-options__buttons {
        gap: 10px;
        margin-bottom: 35px;
    }

    .participants-options__button {
        width: calc(50% - 10px);
        height: 40px;
        font-size: 13px;
    }

    .participants-options__button:nth-child(2) {
        order: -1;
    }

    .participants-options__button:last-child {
        width: 100%;
    }

    .participants-options__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 10px;
        margin-bottom: 35px;
    }

    .participants-options__title {
        font-size: 8px;
    }

    .participants-options__name {
        max-width: 140px;
        font-size: 13px;
    }

    .participants-options__country {
        flex: 1;
        align-items: flex-end;
        font-size: 13px;
    }

    .participants-options__country img {
        width: 25px;
        height: auto;
        margin-bottom: 3px;
    }

    .participants-options__more {
        width: 160px;
        height: 40px;
        font-size: 13px;
    }
}