section.actions {
    padding: 1em;
    max-width: 1000px;
    margin: 0 auto;
}

section.actions .action {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

section.actions .action .image {
    width: 100%;
    height: 100%;
    aspect-ratio: 550 / 700;
    background-size: cover;
}

section.actions .action .title {
    background-color: rgb(136, 143, 112);
    color: white;
    font-weight: 300;
    text-decoration: none;
    padding: 0.2em 1em;
    border-radius: 1em;
    transform: translateY(-50%);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@media screen and (width > 550px) {
    section.actions {
        display: flex;
        gap: 1em;
    }
}