.kng-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.kng-title {
    margin-bottom: 20px;
    /* Typography and color handled by controls/globals */
}

.kng-meta-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.kng-meta-bar {
    display: inline-block;
    width: 4px;
    height: 18px; /* Matches line-height approx */
    background-color: #61CE70; /* Accent color fallback */
    background-color: var(--e-global-color-accent, #61CE70);
    margin-right: 12px;
    border-radius: 1px;
}

.kng-subtitle {
    margin: 0;
    line-height: 1.2;
    /* Typography and color handled by controls/globals */
}

.kng-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.kng-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kng-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4; /* Slightly tall portrait format common for pet photos */
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #eee; /* Placeholder bg */
}

.kng-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kng-item:hover .kng-image-wrapper img {
    transform: scale(1.03);
}

.kng-name {
    /* Typography and color handled by controls/globals */
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .kng-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .kng-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .kng-title {
        font-size: 24px; /* Fallback reasonable size */
    }
}
