/* Demo catalog page — internal tool for the design team. */

body.catalog {
    width: auto;
    height: auto;
    overflow: auto;
    padding: 48px 24px;
}

.catalog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.catalog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.catalog-header .logo-icon {
    width: 27px;
    height: 36px;
}

.catalog-header .logo-wordmark {
    width: 165px;
    height: 38px;
}

.catalog-header h1 {
    margin-left: 24px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-section {
    margin-bottom: 40px;
}

.catalog-section h2 {
    font-size: 22px;
    font-weight: 800;
}

.catalog-section .resolution {
    margin: 4px 0 16px;
    font-size: 15px;
    color: var(--color-gray-text);
}

.catalog-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    transition: filter 120ms ease;
}

.btn:hover {
    filter: brightness(1.08);
}

.btn-danger {
    background-color: var(--color-error);
}
