:root {
    --uw-blue: #1b3a5f;
    --uw-blue-50: #f0f4f9;
    --uw-blue-100: #dce5ef;
    --uw-blue-200: #b5c4d9;
    --uw-blue-400: #6886ac;
    --uw-blue-800: #142c48;
    --uw-blue-900: #0d1e32;
    --uw-beere: #a11d40;
    --uw-beere-50: #faf0f3;
    --uw-beere-100: #f4dce3;
    --uw-beere-200: #e9b8c5;
    --uw-beere-800: #7a1530;
    --uw-logo: #d82c5a;
    --uw-cyan: #3b9bcc;
    --uw-ink: #1a1a1f;
    --uw-text: #4a4a4a;

    --amber-400: #fcbb00;
    --green-50: #f0fdf4;
    --green-200: #b9f8cf;
    --green-600: #00a544;
    --green-700: #008138;
    --green-900: #0d542b;
    --emerald-50: #ecfdf5;
    --emerald-200: #a4f4cf;
    --emerald-500: #00bb7f;
    --emerald-600: #009767;
    --emerald-700: #007956;
    --black: #000;
    --white: #fff;
}

/* ---------- Grid ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

/* ---------- Card ---------- */
.story-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font: inherit;
    color: inherit;
    background: #FFFFFF;
    border: 1px solid var(--uw-blue-100);
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 #0d1e320d, 0 1px 2px -1px #0d1e320d;
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(30, 58, 95, 0.05);
}
.story-card .card-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.story-card .card-header .avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: block;
    object-fit: cover;
    border: 2px solid var(--uw-beere-50);
    border-radius: 50%;
}
.story-card .card-header .avatar-sm {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}
.story-card .card-header .avatar-initials {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--uw-beere-50);
    background: linear-gradient(to bottom right, var(--uw-blue-900), var(--white));
}
.story-card .card-header .card-header-text {
    flex: 1 1 auto;
    align-self: center;
}
.story-card .card-header .card-header-text .card-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--uw-blue-900);
}
.story-card .card-subheader {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 12px 0 0 0;
    padding: 0;
}
.story-card .card-subheader ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.story-card .card-subheader ul li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--uw-text);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.story-card .card-subheader ul li svg {
    width: 16px;
    height: auto;
    flex: 0 0 auto;
    color: var(--uw-beere);
}
.story-card .card-subheader ul li span {
    flex: 1 1 auto;
}
.story-card .card-subheader .card-foerderweg-wrap {
    margin: 12px 0 0 0;
}
.story-card .card-subheader .foerderweg {
    display: inline-block;
    border-radius: 9999px;
    background: var(--uw-beere-50);
    color: var(--uw-beere);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
}
.story-card .card-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--uw-blue-100);
    margin: 20px 0 20px 0;
    padding: 20px 0 0 0;
}
.story-card .card-body .card-detail-label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--uw-beere);
}
.story-card .card-body .card-detail-text {
    margin: 8px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--uw-text);
}
.story-card .card-statement {
    width: 100%;
    font-size: 14px;
    color: var(--uw-ink);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    background: #ce325a0d;
    border: none;
    border-radius: 14px;
    margin: auto 0 0 0;
    padding: 16px 16px;
}
.story-card .card-statement svg {
    width: 20px;
    height: auto;
    display: block;
    color: var(--uw-beere);
}
.story-card .card-statement blockquote {
    margin: 8px 0 0 0;
    padding: 0;
}
