section.article-showcase {
    margin-bottom: var(--margin);
    text-align: center;
}

section.article-showcase .root {
    background-color: var(--color-root);
    padding: 0 9px;
    border-radius: var(--border-radius);
    color: black;
    font-weight: 700;
}

section.article-showcase .box {
    position: relative;
    height: 600px;
    overflow: hidden;
}

section.article-showcase h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--color);
    line-height: 40px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 10px 5px black;
}

section.article-showcase h1,
section.article-showcase p.intro {
    font-family: var(--font2);
}

section.article-showcase .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

section.article-showcase .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.75);
    opacity: 0.45;
    border-radius: var(--border-radius);
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom,
            from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
    mask-image: -webkit-gradient(linear, left top, left bottom,
            from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
}

section.article-showcase .image {
    position: absolute;
    bottom: -283px;
    text-align: center;
    width: 100%;
}

section.article-showcase .image img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 75px;
}

section.article-showcase .content {
    position: absolute;
    bottom: 100px;
    z-index: 2;
    width: 700px;
    left: 0;
    right: 0;
    margin: auto;
}

section.article-showcase p.intro {
    margin-bottom: 10px;
    font-family: var(--font2);
}

section.article-showcase .info {
    font-size: 14px;
    color: white;
    line-height: 14px;
}

section.article-showcase .info li {
    display: inline-block;
    margin: 0 4px;
}

section.article-showcase .info li a {
    color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

section.article-showcase .info li a:hover {
    color: var(--color);
}

section.article-showcase .info i {
    opacity: 0.25;
    font-size: 11px;
    position: relative;
    top: -1px;
    margin-right: 3px;
}

section.article-showcase .social-share {
    margin-top: 20px;
}

section.article-showcase .social-share li {
    display: inline-block;
    background: var(--dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 3px;
    border: var(--border);
}

section.article-showcase .social-share a {
    display: block;
}

section.article-showcase .social-share .icon {
    font-size: 20px;
    padding: 0;
    text-align: center;
    color: var(--color);
    line-height: 46px;
}

section.article-showcase .social-share .name {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

@media all and (max-width: 1320px) {
    section.article-showcase .box {
        height: 481px;
    }
}

@media all and (max-width: 960px) {
    section.article-showcase h1 {
        font-size: 34px;
        line-height: 34px;
    }

section.article-showcase h1,
    section.article-showcase p.intro {
        width: 100%;
        padding: 0 15px;
    }

section.article-showcase .content {
        bottom: 30px;
    }
}

@media all and (max-width: 720px) {
    section.article-showcase .content {
        width: 100%;
    }
}

@media all and (max-width: 576px) {
    section.article-showcase .box {
        height: unset;
        padding: 15px 10px;
    }

section.article-showcase h1 {
        font-size: 24px;
        line-height: 24px;
        padding: 00;
    }

    section.article-showcase .content {
        position: relative;
        bottom: unset;
    }

    section.article-showcase .social-share {
        margin-top: 10px;
    }
}