/* Basic card */

.vzc-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 126px;
    padding: 24px;
    background-color: var(--vzc-color-bg-primary);
    border-radius: var(--vzc-border-radius-small);
    border: 1px solid var(--vzc-color-gray1);
    color: #000;
    cursor: pointer;
}

.vzc-card:hover {
    text-decoration: none !important;
    background-color: var(--vzc-bg-color-hover);
    border-color: var(--vzc-outline-color);
}

.vzc-card:active {
    background-color: var(--vzc-bg-color-active);
}

.vzc-card:focus {
    text-decoration: none !important;
}

/* Link navigation card */
.vzc-link-card {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: space-between;
    min-height: 158px;
    padding: 24px;
    background-color: var(--vzc-color-bg-primary);
    border-radius: var(--vzc-border-radius-small);
    border: 1px solid var(--vzc-color-gray1);
    color: #000;
}

.vzc-link-card:hover {
    text-decoration: none !important;
    background-color: var(--vzc-bg-color-hover);
    border-color: var(--vzc-outline-color);
}

.vzc-link-card:active {
    background-color: var(--vzc-bg-color-active);
}

.vzc-link-card:focus {
    text-decoration: none !important;
}

.vzc-link-card h1,
.vzc-link-card h3 {
    font-weight: 400;
}

.vzc-link-card .vzc-link-card-footer {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: flex-end;
    align-items: center;
    row-gap: 8px;
}

.vzc-link-card .vzc-link-card-footer img {
    width: 16px;
    height: 16px;
}

/* Recent activity card */
.vzc-recent-activity-card {
    min-height: 158px;
}

/* Featured article card */
.vzc-solutions-card,
.vzc-featured-artice-card {
    min-height: 126px;
}

/* Your role card */

.your-role-container {
    background: linear-gradient(to bottom, var(--vzc-color-bg-secondary) 60%, transparent 40%);
}

@media (max-width: 1199px) {
    .vzc-grid-flex-container.your-role-container {
        background: linear-gradient(to bottom, var(--vzc-color-bg-secondary) calc(100% + 32px), transparent 0%);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
}

.vzc-role-card {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: space-between;
    padding: 24px;
    background-color: var(--vzc-color-bg-primary);
    border-radius: var(--vzc-border-radius-small);
    box-shadow: 0px 6px 48px 0px #0000001a;
    color: #000;
}

.vzc-card-wo-shadow {
    box-shadow: unset;
}

.vzc-card-border {
    border: 1px solid var(--vzc-color-gray1);
}

.vzc-role-card:hover,
.vzc-learning-card:hover {
    text-decoration: none !important;
    background-color: var(--vzc-bg-color-hover);
    outline: 1px solid var(--vzc-outline-color);
}

.vzc-role-card:active,
.vzc-learning-card:active {
    background-color: var(--vzc-bg-color-active);
}

.vzc-role-card:focus,
.vzc-learning-card:focus {
    text-decoration: none !important;
}

.vzc-role-card h3 {
    font-weight: 400;
}

.vzc-role-card .vzc-role-card-body {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.vzc-role-card .vzc-role-card-body img {
    width: 32px;
    height: 32px;
}

.vzc-role-card .vzc-role-card-footer {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    justify-content: flex-end;
    align-items: center;
    row-gap: 8px;
}

.vzc-role-card .vzc-role-card-footer img {
    width: 16px;
    height: 16px;
}

.vzc-learning-card {
    display: flex;
    flex-direction: column;
    background-color: var(--vzc-color-bg-primary);
    border-radius: var(--vzc-border-radius-small);
    color: #000;
}

.vzc-learning-card > img {
    height: 216px;
    min-height: 216px;
    object-fit: fill;
    border-radius: var(--vzc-border-radius-small) var(--vzc-border-radius-small) 0px 0px;
}

.vzc-learning-card .vzc-learning-card-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
    justify-content: space-between;
    height: 100%;
    row-gap: 24px;
}

.vzc-learning-card .vzc-learning-card-content .vzc-learning-card-body {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
.vzc-learning-card .vzc-learning-card-content .vzc-learning-card-body h2 {
    font-weight: 700 !important;
}

.vzc-learning-card .vzc-learning-card-content .vzc-learning-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.vzc-learning-card .vzc-learning-card-content .vzc-learning-card-footer .vzc-footer-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
}
.vzc-learning-card .vzc-learning-card-content .vzc-learning-card-footer .vzc-footer-link h3 {
    font-weight: 700 !important;
}

.vzc-whats-new-container .vzc-whats-new-title {
    display: flex;
    justify-content: space-between;
}

.vzc-whats-new-container .vzc-whats-new-title a {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
    color: #000;
}

.vzc-whats-new-card {
    display: flex;
    flex-direction: column;
    background-color: var(--vzc-color-bg-primary);
    color: #000;
    border-radius: var(--vzc-border-radius-small);
    border: 1px solid var(--vzc-color-gray1);
    overflow: hidden;
}

.vzc-whats-new-card:hover {
    text-decoration: none !important;
    background-color: var(--vzc-bg-color-hover);
    border-color: var(--vzc-outline-color);
}

.vzc-whats-new-card:active {
    background-color: var(--vzc-bg-color-active);
}

.vzc-whats-new-card:focus {
    text-decoration: none !important;
}

.vzc-whats-new-card h3 {
    font-weight: 400;
}

.vzc-whats-new-card > img {
    height: 216px;
    background-color: var(--vzc-color-bg-primary);
}

.vzc-whats-new-card .vzc-whats-new-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    row-gap: 36px;
    padding: 24px;
}

.vzc-whats-new-card .vzc-whats-new-card-content .vzc-whats-new-card-body {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.vzc-whats-new-card .vzc-whats-new-card-content .vzc-whats-new-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.vzc-whats-new-card .vzc-whats-new-card-content .vzc-whats-new-card-footer .vzc-footer-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
}

.vzc-announcement-banner {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 24px 64px 24px 32px;
    column-gap: 32px;
    background-color: var(--vzc-bg-information);
    border-radius: var(--vzc-border-radius-xsmall);
    margin-top: 16px;

    .vzc-announcement-banner-icon-container {
        display: flex;
        flex-direction: column;
        justify-content: center;

        svg {
            fill: var(--vzc-color-information);
            width: 44px;
            height: 44px;
        }
    }

    .vzc-announcement-banner-text-container {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        white-space: pre-line;

        h3 {
            font-weight: 700 !important;
        }

        a {
            text-decoration: underline !important;

            &:hover {
                text-decoration-line: underline !important;
                text-decoration-thickness: 2px !important;
            }
        }
    }

    .vzc-announcement-close-button {
        position: absolute;
        display: flex;
        width: 16px;
        height: 16px;
        background-color: unset;
        border: unset;
        border-radius: 0;
        padding: 0;
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 768px) {
    .vzc-announcement-banner {
        flex-direction: column;
        row-gap: 32px;
    }
}
