.angebote-page {
    max-width: 1160px;
}

.angebote-page .page-hero {
    display: grid;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 248, 243, 0.96) 0%, rgba(255, 241, 232, 0.98) 100%);
    border: 1px solid rgba(198, 122, 75, 0.18);
    box-shadow: 0 18px 40px rgba(116, 57, 21, 0.08);
}

.angebote-page .page-hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.02;
    text-wrap: balance;
    max-width: 12ch;
}

.angebote-page .page-hero p:not(.kicker) {
    max-width: 62ch;
    color: #654d42;
    line-height: 1.7;
}

.angebote-hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.angebote-grid {
    margin-top: 0.6rem;
}

.angebote-card {
    border-radius: 20px;
    border-color: rgba(198, 122, 75, 0.18);
    box-shadow: 0 16px 34px rgba(116, 57, 21, 0.08);
}

.angebote-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(116, 57, 21, 0.12);
}

.angebote-card-image-wrap {
    background: linear-gradient(180deg, #f7eee8 0%, #f0e1d6 100%);
}

.angebote-card-body {
    display: grid;
    gap: 0.2rem;
    padding: 1.05rem;
}

.angebote-card-title {
    font-size: 1.18rem;
}

.angebote-card-tags,
.angebote-card-categories {
    margin-bottom: 0.35rem;
}

.angebote-card-tag {
    background: rgba(62, 45, 37, 0.08);
}

.angebote-card-badge {
    background: rgba(249, 115, 22, 0.14);
}

.angebote-card-meta {
    color: #755d50;
}

.angebote-empty {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: 24px;
    border: 1px solid rgba(198, 122, 75, 0.16);
    box-shadow: 0 16px 34px rgba(116, 57, 21, 0.07);
}


@media (max-width: 640px) {
    .angebote-hero-actions {
        flex-direction: column;
    }

    .angebote-hero-actions .btn {
        width: 100%;
    }

    .angebote-page .page-hero h1 {
        max-width: none;
    }
}
