/**
 * Niki Core - Component Styles
 * Small frontend bridge for the component-specific Design System controls.
 */

/* Common text colors */
.niki-content-column {
	color: var(--niki-component-text-color, inherit);
}

.niki-content-column h1,
.niki-content-column h2,
.niki-content-column h3,
.niki-content-column h4,
.niki-content-column h5,
.niki-content-column h6 {
	color: var(--niki-component-heading-color, var(--niki-component-title-color, inherit));
}

/* Alignment */
.niki-component-align-left { text-align: left; }
.niki-component-align-center { text-align: center; }
.niki-component-align-right { text-align: right; }

/* Image */
.niki-image-fit-contain img { object-fit: contain; }
.niki-image-fit-cover img { object-fit: cover; }

.niki-content-column.is-image img {
	border-radius: var(--niki-component-radius, inherit);
}

/* Button */
.niki-content-column.is-button .niki-button {
	color: var(--niki-component-color, inherit);
	border-radius: var(--niki-component-radius, inherit);
}

/* Gallery */
.niki-content-column.is-gallery .niki-gallery {
	gap: var(--niki-gallery-gap, inherit);
}

/* Latest News */
.niki-content-column.is-news .niki-latest-news,
.niki-content-column.is-news .niki-news-grid {
	gap: var(--niki-news-gap, inherit);
}

.niki-content-column.is-news .niki-news-card,
.niki-content-column.is-news article {
	background: var(--niki-news-card-background, inherit);
}

.niki-news-image-hide .niki-news-image,
.niki-news-title-hide .niki-news-title,
.niki-news-date-hide .niki-news-date,
.niki-news-excerpt-hide .niki-news-excerpt,
.niki-news-category-hide .niki-news-category {
	display: none !important;
}

.niki-content-column.is-news .niki-news-title {
	color: var(--niki-component-title-color, inherit);
}

.niki-content-column.is-news .niki-news-date,
.niki-content-column.is-news .niki-news-category {
	color: var(--niki-component-meta-color, inherit);
}

/* Space */
.niki-content-column.is-space .niki-space {
	height: var(--niki-space-height, inherit);
}
