/* Compact theme entry points for the real Shop-2.0 catalogue. */

.bhw-catalog-worlds {
    display: grid;
    gap: var(--bhw-space-3);
    margin-block-end: var(--bhw-space-4);
}

.bhw-catalog-worlds h2 {
    margin: 0;
    font-size: var(--bhw-text-xl);
}

.bhw-catalog-worlds ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--bhw-space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.bhw-catalog-worlds a {
    display: grid;
    gap: var(--bhw-space-1);
    height: 100%;
    padding: var(--bhw-space-3) var(--bhw-space-4);
    border: var(--bhw-border-thin) solid var(--bhw-color-border);
    border-radius: var(--bhw-radius-large);
    background: var(--bhw-color-surface-warm);
    color: var(--bhw-color-text-primary);
    text-decoration: none;
}

.bhw-catalog-worlds a:hover,
.bhw-catalog-worlds a:focus-visible {
    border-color: var(--bhw-color-accent);
    box-shadow: var(--bhw-shadow-card);
}

.bhw-catalog-worlds span {
    font-family: var(--bhw-font-heading);
    font-size: var(--bhw-text-md);
    font-weight: var(--bhw-weight-bold);
}

.bhw-catalog-worlds small {
    color: var(--bhw-color-text-secondary);
}

@media (max-width: 63.999rem) {
    .bhw-catalog-worlds ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 34.999rem) {
    .bhw-catalog-worlds ul {
        grid-template-columns: minmax(0, 1fr);
    }
}
