.header-link {
    transition: 0.3s;
}

.vertical-cards {
    display: flex;
    flex-direction: row;
    margin-bottom: 64px;
}

.vertical-cards .card {
    margin-right: 32px;
    max-width: 50%;
}

.vertical-cards .card:last-child {
    margin-right: 0px;
}

.horizontal-cards {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.horizontal-cards .card {
    margin-bottom: 16px;
}

.horizontal-cards .card:last-child {
    margin-bottom: 0px;
}

.card {
    background: var(--theme_color_background_secondary);
    border-radius: 16px;
    padding: 16px;

    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    transition: 0.3s;
}

@media (prefers-color-scheme: light) {
    .card {
        background: color-mix(in srgb, var(--theme_color_background_secondary) 50%, transparent);
    }
}

.card .title {
    margin-top: 0;
    transition: 0.3s;
}

.card .image {
    width: 100%;
    border-radius: 4px;
    transition: 0.3s;
}

.card .image img {
    display: block;
}

.card .description {
    padding: 0;
}

.card .tags {
    margin-top: 16px;
}

a.card {
    color: unset;
    text-decoration: unset;
}

.card:hover {
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.2);
}

.card:hover .title {
    color: var(--theme_color_primary);
}

.card:hover .image {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.chip {
    background-color: var(--theme_color_background_tertiary);
    color: var(--theme_color_text_primary);

    border-radius: 16px;

    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .0178571429em;

    display: inline-flex;
    height: 32px;
    position: relative;
    align-items: center;
    padding: 0 12px;
}