@import "../../style/variables.scss";

.organizer-profile-wrap {
    font-family: 'Avenir Next';
    .title{
        font-weight: 400;
        color: #252525;
        font-family: "Canto";
        text-transform: capitalize;
    }
    .title-wrap {
        margin-bottom: 20px;
        @media only screen and (min-width: 768px) {
            margin-bottom: 30px;
        }
        @media only screen and (min-width: 1440px) {
            margin-bottom: 50px;
        }
    }
}
.profile-box {
    position: relative;
    padding: 20px;
    border: 1px solid $mainBorder;
    @media only screen and (min-width: 1200px) {
        padding: 32px;
    }
    .terms-conditions-btn{
        position: static;
        top: 10px;
        right: 10px;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.2;
        color: $primary;
        cursor: pointer;
        transition: all 0.4s;
        margin-top: 20px;
        @media only screen and (min-width: 768px) {
            position: absolute;
            margin: 0;
            color: $tertiary;
            &:hover{
                color: $primary;
                transition: all 0.4s;
            }
        }
        &:hover{
            color: $tertiary;
            transition: all 0.4s;
        }
    }
    .image-box{
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        @media only screen and (max-width: 768px){
            margin: 0 auto 16px;
        }
        @media only screen and (min-width: 768px) {
            min-width: 160px;
            max-width: 160px;
            height: 160px;
        }
        @media only screen and (min-width: 1200px) {
            min-width: 240px;
            max-width: 240px;
            height: 240px;
        }
        img{
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }
    .profile-content{
        max-width: 900px;
        @media only screen and (max-width: 768px){
            text-align: center;
        }
        &.skeleton {
            display: flex;
            flex-direction: column;
            width: 100%;
            .skeleton-box {
                flex-shrink: 0;
            }
        }
        h3{
            font-weight: 400;
            color: #252525;
            font-family: "Canto";
            text-transform: capitalize;
            font-size: 20px;
            line-height: 24px;
            color: $btnText;
            margin-bottom: 10px;
            @media only screen and (max-width: 768px){
                text-align: center;
            }
            @media only screen and (min-width: 768px) {
                font-size: 22px;
                line-height: 26px;
            }
            @media only screen and (min-width: 1024px) {
                font-size: 26px;
                line-height: 30px;

            }
            @media only screen and (min-width: 1200px) {
                font-size: 28px;
                line-height: 32px;
            }
            @media only screen and (min-width: 1600px) {
                font-size: 36px;
                line-height: 40px;
                margin-bottom: 20px;
            }
        }
        p{
            font-size: 18px;
            line-height: 22px;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            @media only screen and (max-width: 768px){
                text-align: center;
            }
            @media only screen and (min-width: 1024px) {
                font-size: 20px;
                line-height: 24px;
            }
            @media only screen and (min-width: 1440px) {
                font-size: 22px;
                line-height: 26px;
            }
        }
        .social-link{
            font-size: 18px;
            line-height: 22px;
            color: $darkGrey;
            display: inline-flex;
            gap: 8px;
            @media only screen and (max-width: 768px){
                text-align: center;
            }
            @media only screen and (min-width: 1024px) {
                font-size: 20px;
                line-height: 24px;
            }
            @media only screen and (min-width: 1200px) {
                font-size: 22px;
                line-height: 26px;
            }
            i{
                color: $primary;
            }
        }
    }
    .button-wrap{
        margin-top: 20px;
        @media only screen and (min-width: 767px) {
            margin-top: 30px;
        }
        h4{
           margin-bottom: 0;
        }
        .solid-btn{
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            background-color: $LightCream;
            border-color: $LightCream;
            color: $btnText;
            @media only screen and (min-width: 1200px) {
                font-size: 16px;
            }
            &:hover , &.active{
                background-color: $primary;
                border-color: $primary;
                color: $white;
            }
        }
    }
}
