/* Home Screen – Agentic Engineering Köln */

.screen-home-hero-visual {
    width: 100%;
    max-width: 480px;
}

.screen-home-hero-image-wrapper {
    width: 100%;
}

.screen-home-hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    display: block;
}

.screen-home-hero-panel {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    background-color: var(--color-surface);
    padding: 1.5rem;
    box-sizing: border-box;
}

.screen-home-hero-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.screen-home-hero-panel-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.screen-home-hero-panel-city {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.screen-home-hero-panel-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    padding: 0;
}

.screen-home-hero-panel-topic {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-headline);
}

.screen-home-hero-panel-topic::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

.screen-home-hero-panel-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.screen-home-hero-panel-stat {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 0.25rem 0.625rem;
}

.screen-home-hero-subtitle {
    margin-top: 1rem;
    max-width: 40rem;
    color: var(--color-text-muted);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.screen-home-about-text {
    text-align: left;
    width: 100%;
    max-width: 100%;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.screen-home-about-original-headline {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.screen-home-faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 600px) {
    .screen-home-faq-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.25rem;
    }
}

.screen-home-faq-item {
    display: flex;
    min-width: 0;
    width: 100%;
}

.screen-home-faq-item .base-tile {
    flex: 1;
    height: 100%;
    align-items: flex-start;
    text-align: left;
}

.screen-home-faq-item .base-headline-h3 {
    width: 100%;
    margin-bottom: 0.5rem;
    color: var(--color-headline);
    text-align: left;
    white-space: normal;
}

.screen-home-faq-item .base-content-text {
    width: 100%;
    text-align: left;
}

@media (min-width: 1024px) {
    .screen-home-hero-panel {
        padding: 2rem;
    }
}
