.activity {
    background: #fff;
    text-align: center;
    font-family: 'Fieldwork';
    font-weight: 300;
    display: flex;
    flex-flow: column nowrap;
    justify-content: stretch;
    display: block;
}

.activity__image {
    height: 230px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.activity__date {
    display: block;
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.activity__date::before {
    content: "\e9a8";
    font-family: 'bakehouse-iconset' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    margin-right: 10px;
}

.activity__texts {
    padding: 30px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    flex-grow: 1;
}

.activity__title {
    font-size: 20px;
    line-height: 160%;
    color: #838383;
    margin-bottom: 20px;
}

.activity__text {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.05em;
    color: #838383;
    margin-bottom: 40px;
    flex-grow: 1;
}

.activity__detail-button {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #AB9C95;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.activity__detail-button::after {
    content: "\e902";
    font-family: 'bakehouse-iconset' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px;
    padding-right: 5px;
    transition: transform 0.3s, padding 0.3s;
}
.activity:hover .activity__detail-button::after {
    transform: translateX(5px);
}

@media only screen and (max-width: 840px) {
    .activity__texts {
        padding: 20px;
    }
}

/* activities-list */

.activities-list {
    
}

.activities-list__categories {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.activities-list__category {
    font-family: 'Fieldwork';
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #DBC08E;
    opacity: 0.5;
    margin: 10px 20px;
    transition: opacity 0.3s;
}

.activities-list__category p {
    margin: 0;
}

.activities-list__category.js-mixitup-filter-active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.activities-list__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    column-gap: 30px;
    row-gap: 45px;
}

.activities-list .activity {
    background: #FFFFFF;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.05), 0px 2px 4px rgba(0, 0, 0, 0.05);
}
