.component-featured {
    gap: 1.5em;
}

.component-featured > div {
    background-color: var(--background-color-3);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1em;
}

.component-featured > div {
    display: flex;
    color: var(--foreground-color);
    gap: 1em;
    overflow-x: auto;
}

.component-featured > div > article {
    position: relative;
    min-height: 13em;
    min-width: 18em;
    max-height: 13em;
    max-width: 18em;
}

.component-featured > div > article > img {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 5px;

    background-size: cover;
    background-position: center;

    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 85%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 85%);

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.component-featured > div > article > div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.component-featured > div > article > div > span {
    padding-left: 1em;
}

.component-featured > div > article > div > div {
    display: flex;
    justify-content: space-between;
    padding: 0 1em 1em 1em;
}

.component-featured > div > article > div > div > a {
    color: var(--foreground-color-2);
    font-size: 20px;
    text-decoration: none;
    line-height: 1em;
}

.component-featured > a {
    color: var(--foreground-color-2);
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    text-align: right;
    float: right;
    margin-top: 2em;
}