.cats-page {
    background: #f3f4f6;
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0));
    min-height: 60vh;
}

.cats-hero {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: #fff;
    padding: 16px 0 24px;
}

.cats-back {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.cats-hero h1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.cats-hero h1 i {
    color: #F9A825;
}

.cats-hero p {
    margin: 0;
    font-size: 14px;
    opacity: .85;
}

.cats-grid-wrap {
    margin-top: -12px;
    padding-bottom: 24px;
}

.cats-app-grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 576px) {
    .cats-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cats-app-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    position: relative;
    overflow: hidden;
}

.cats-app-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #F9A825, #FF6F00);
}

.cats-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #F9A825, #FF6F00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1e293b;
}

.cats-card-body {
    flex: 1;
    min-width: 0;
}

.cats-card-body strong {
    display: block;
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}

.cats-card-body p {
    margin: 0 0 6px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cats-card-meta {
    font-size: 11px;
    font-weight: 700;
    color: #F9A825;
    text-transform: uppercase;
}

.cats-sub-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.cats-sub-tags span {
    font-size: 10px;
    padding: 3px 8px;
    background: #f3f4f6;
    border-radius: 6px;
    color: #6b7280;
    font-weight: 600;
}

.cats-card-arrow {
    align-self: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9A825;
    flex-shrink: 0;
}

.cats-quick-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cats-quick-link {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
}

.cats-quick-link i {
    display: block;
    font-size: 20px;
    color: #F9A825;
    margin-bottom: 4px;
}
