﻿/* ============ Article card ============ */
.article-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* ============ Article card header ============ */
.article-card-header {
    border-bottom: 1px solid var(--light-grey-2);
    padding: 32px;
}

.article-card-switch-header {
    align-items: center;
    display: flex;
    margin-bottom: 0;
}

/* ============ Article card body ============ */
.article-card-body {
    padding: 48px 100px 80px 50px;
    position: relative;
}

.article-card-body:before {
    background: transparent;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background .2s ease-in-out;
    width: 100%;
    z-index: -1;
}

.article-card-body[data-enabled="false"]:before {
    background: rgba(255,255,255, 0.9);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background .2s ease-in-out;
    width: 100%;
    z-index: 1;
}

/* ============ Article card footer ============ */
.article-card-footer {
    border-top: 1px solid var(--light-grey-2);
}

.article-card-body h4 {
    padding: 0;
}