body > main > figure {
    position: relative;
    z-index: 1;
    display: flex;
    visibility: hidden;
    margin: -1rem 0 1rem -21rem;
    padding: 0;
    width: calc(100% + 23rem);
    height: 50vh;
    overflow: hidden;
}

body > main > figure > img {
    object-fit: cover;
    min-width: 100%;
    height: 100%;
}

body > main > figure > img:first-of-type {
    margin: 0 0 0 -100%;
}

body > main > figure > figcaption {
    position: absolute;
    left: 2%;
    right: 2%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    width: 96%;
    height: 100%;
}

body > main > figure > figcaption > span {
    font: var(--fa-font-solid);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    background: white;
    border-radius: 1rem;
    color: #222;
    text-align: center;
    cursor: pointer;
}

body > main > section {
    margin: 0 0 7rem;
}

body > main > section > div {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
}

body > main > section > div > figure {
    background: #ffffff;
    border-radius: 0 0 0.7rem 0.7rem;
    cursor: pointer;
}

body > main > section > div > figure:hover {
    background: #fffaf8;
}

body > main > section > div > figure > img {
    object-fit: cover;
    height: auto;
}

body > main > section > div > figure > figcaption {
    padding: 0.8rem;
    height: 14.2rem;
}

body > main > section > div > figure > figcaption > a {
    margin: 0 0 0.5rem;
    max-height: 3.5rem;
    overflow: hidden;
    overflow-wrap: anywhere;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

body > main > section > div:hover > figure > figcaption > a {
    opacity: 0.7;
}

body > main > section > div > figure > figcaption > em {
    display: block;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: right;
    font-style: normal;
    font-weight: normal;
}

body > main > section > div > figure > figcaption > p {
    margin: 0.7rem 0;
    max-height: 9.3em;
    overflow-wrap: anywhere;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}