.artist-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.artist-left {
    width: 100%;
    display: flex;
    gap: 16px;
}

.artist-img {
    width: 240px;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;

    img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

.artist-location {
    width: fit-content;
    margin-top: auto;
}

.custom-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    i {
        font-size: 24px;
    }

    p {
        white-space: nowrap;
    }
}

.artist-right {
    width: 100%;
}

.booking-container {
    width: 100%;
    display: flex;
    gap: 40px;
}

.w-full {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .artist-container {
        gap: 12px;
        flex-direction: column;
    }    

    .artist-left {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .booking-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 384px) {
    .artist-left {
        flex-direction: column;
        align-items: center;
    }

    .artist-location {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    };
}