@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

.wedding-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -30px;
}

.wedding-list__item {
    width: calc(33% - 30px);
    margin: 0 15px 30px;
}

.wedding-list__image {
    position: relative;
    padding-top: 57%;

    overflow: hidden;
}

.wedding-list__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    object-fit: cover;
    object-position: center;
}

.wedding-list__title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    font-family: 'Lato',sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    background-color: #0087E2;
    min-height: 6em;
    margin: 0;
}

.wedding-list__title.spoiler__switcher:hover {
    background-color: #279ced;
}

.spoiler.spoiler_opened .wedding-list__description {
    padding: 25px;
}

.wedding-list__description {
    padding: 0 25px;
    border: 1px solid #EAEAEA;
}

@media (max-width: 991px) {
    .wedding-list__item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .wedding-list__item {
        width: calc(100% - 30px);
    }
    .wedding-list__title {
        min-height: auto;
    }
}