@charset "utf-8";

.concert__wrapper{
    padding: 0 6%;
}

/* pc */
@media screen and (min-width: 769px) {
    .concert__wrapper{
        padding: 0 23%;
    }
}

/* ======================
desc
======================= */

.concert__desc{
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin : 40px 0 24px;
}

.concert__desc::-webkit-details-marker {
    display: none;
}

.concert__date{
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.5;
}

.concert__title{
    color: #E67E22;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.5;
    
}

.title__wrapper{
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dashed #000000;
}

.concert__link{
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    transition: 0.4s;
}

.concert__link:hover{
    opacity: 0.5;
}

/* ======================
img
======================= */

.subImg__wrapper{
    padding: 24px 13%;
}

.top__img:hover{
    transform: scale(1.05);
    transition: 0.4s;
}


.concert__subImg{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
    align-items: center;
}

.gallery__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.gallery__img:hover{
    transform: scale(1.05);
    transition: 0.4s;
}

@media screen and (min-width: 769px) {
    .concertImg{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .concert__mainImg{
        max-width: 327px;
        width: 100%;
    }

    .gallery__img{
        width: 100px;
        height: 100px;
    }
}

