/* /eu-kontroll-helg and its area pages. Card surfaces are square by convention;
   only pills and buttons keep a radius. */

.helg-group {
    margin: 0 0 2rem;
}

/* articlePage.css sets h3 margins with !important, so matching weight is the only way to
   pull the first area heading up under the section h2. */
.helg-group h3 {
    margin-top: 6px !important;
    margin-bottom: 0.25rem !important;
}

.helg-group__more {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
}

.helg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.helg-card {
    background: var(--white);
    border: 1px solid rgba(14, 26, 20, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.helg-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.helg-card__name {
    font-weight: 700;
    color: var(--foreground-primary);
}

.helg-card__name-link {
    color: inherit;
}

.helg-card__chain {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-ink);
    background: var(--brand-surface);
    border-radius: 999px;
    padding: 0.1rem 0.55rem;
}

.helg-card__badge--heavy {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7a5200;
    background: #fdf3dd;
    border-radius: 999px;
    padding: 0.1rem 0.55rem;
}

.helg-card__place {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
}

.helg-card__hours {
    list-style: none;
    margin: 0.2rem 0;
    padding: 0;
    color: var(--foreground-primary);
    font-size: 0.95rem;
}

.helg-card__hours li + li {
    margin-top: 0.15rem;
}

.helg-card__note,
.helg-card__conditions {
    margin: 0;
    font-size: 0.85rem;
    color: #7a5200;
    background: #fdf3dd;
    padding: 0.35rem 0.5rem;
}

.helg-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.helg-card__price {
    font-size: 0.9rem;
    color: var(--foreground-secondary);
}

.helg-card__price strong {
    color: var(--foreground-primary);
    font-size: 1rem;
}

.helg-card__cta {
    display: inline-block;
    background: var(--action-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
}

.helg-card__cta:hover {
    background: var(--brand-ink);
}

.helg-card__verified {
    margin: 0;
    font-size: 0.78rem;
    color: var(--foreground-tertiary);
}

.helg-card__verified a {
    color: inherit;
}

.helg-price-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
}

.helg-price-table {
    border-collapse: collapse;
    min-width: 320px;
}

.helg-price-table th,
.helg-price-table td {
    text-align: left;
    padding: 0.5rem 0.9rem 0.5rem 0;
    border-bottom: 1px solid rgba(14, 26, 20, 0.12);
    color: var(--foreground-primary);
}

.helg-price-table th {
    font-weight: 600;
    color: var(--foreground-secondary);
}
