.organizers-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 20px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .5);
    padding: 3% 4%;
    border-radius: 12px;
}

.organizers-img-box {
    flex: 1 1 50%;
    text-align: center;
    padding: 5%;
}

.organizers-content-box {
    flex: 1 1 50%;

    h2 {
        font-size: clamp(1.375rem, 1.2386rem + 0.6818vw, 1.75rem);

        font-weight: 600;
        color: var(--secondry-color);
        margin-bottom: 20px;
        line-height: 1;
    }

    p {
        text-align: justify;
        font-size: 20px;
        color: #54595f;
        margin-bottom: 15px;
        font-weight: 500;
        font-family: "Barlow", Sans-serif;

        a {
            color: #c36;
        }
    }
}

.contact-list {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    li {
        &:nth-child(1) a span {
            background-color: #1EE1C5;

        }

        &:nth-child(2) a span {
            background-color: #E11E1E;

        }

        &:nth-child(3) a span {
            background-color: #078243;

        }
    }

    a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        color: var(--secondry-color);
        font-weight: 600;
        font-family: "Barlow", Sans-serif;

        span {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
        }
    }
}

.media-icon-list-organizer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;


    .media-icon-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;

        &:hover {
            color: #fff;
        }
    }




    /* Specific colors for each brand */
    .media-icon-link:has(.fa-linkedin-in) {
        background-color: #0077B5;
    }

    .media-icon-link:has(.fa-twitter) {
        background-color: #1DA1F2;
    }

    .media-icon-link:has(.fa-instagram) {
        background-color: #000;
    }

    .media-icon-link:has(.fa-facebook-f) {
        background-color: #4267B2;
    }

    .media-icon-link:has(.fa-youtube) {
        background-color: #FF0000;
    }
}

@media(max-width:767px) {
    .organizers-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .organizers-wrapper:nth-child(even) {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}