/* EXTENDED ROW WRAPPER */
.row.row-extended {
	margin: 22px auto;
	width: 100%;
	max-width: 80vw;
}

/* GRID CONTAINER */
.os-columns-container {
	display: grid;
	gap: 2rem;
}

/* Define exact number of columns per layout */
.os-columns-container.os-columns-count-2 {
	grid-template-columns: repeat(2, 1fr);
}

.os-columns-container.os-columns-count-3 {
	grid-template-columns: repeat(3, 1fr);
}

.os-columns-container.os-columns-count-4 {
	grid-template-columns: repeat(4, 1fr);
}

.os-columns-container.os-columns-count-5 {
	grid-template-columns: repeat(5, 1fr);
}

.os-columns-container.os-columns-count-6 {
	grid-template-columns: repeat(6, 1fr);
}

/* Force consistent column structure */
.os-columns-container--column {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* SECTION HEADLINE */
.os-columns-container-headline {
	padding: 18px 0 30px 0;
}

.os-columns-container h2,
.os-columns-container-headline span {
	color: #333;
	font-family: 'montserrat';
	font-size: 3rem;
	line-height: 1.25em;
}

.os-columns-container-headline span {
	font-size: 2rem;
}

/* TEXT INSIDE CARDS */
.os-card-text {
	text-align: center;
	margin: 16px 0px;
}

.os-columns-container-text {
	margin: 0px 0px 14px 0;
}

.os-columns-container-text li {
	margin: 0 0 12px 0;
	position: relative;
}

.os-columns-container-text li:after {
	width: 100%;
	height: 2px;
	content: '';
	background: #314945;
	position: absolute;
	left: 0;
	bottom: -5px;
	opacity: .2;
}

/* PRICE ROW STYLE */
.os-columns-container-priceRow {
	width: fit-content;
	background: #f0edf2;
	color: #333;
	font-weight: 600;
	padding: 14px 14px 10px 14px;
}

.os-columns-container-priceRow span {
	font-size: 2.3rem;
}


div.img-col-sec > img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* BULLET LIST STYLE */
.os-bullets-icon {
	display: flex;
	width: 24px;
	height: 24px;
	margin-right: 14px;
	align-items: center;
	justify-content: flex-start;
}

.os-bullets-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

li.os-bullets-item {
	display: flex;
	align-items: center;
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #0000001a;
	justify-content: flex-start;
}

.os-bullets-text {
	width: 90%;
}

/* BIG TITLE LAYOUT */
.os-columns-container--column.os-big-title {
	display: flex;
}

.os-big-title-headline {
	margin: auto;
}

/* BIG IMAGE LAYOUT */
.os-columns-container--column.os-big-image {
	display: flex;
	flex-direction: column;
}

.os-big-image-wrapper {
	width: 100%;
	height: 100%;
}

.os-big-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CARD BASE STYLE */
.os-informative-card {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: background-color 0.5s ease, color 0.5s ease;
    display: flex;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px rgb(0 0 0 / 15%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    min-height: 40vh;
}

/* INNER WRAPPER FOR TEXT + ICON */
.os-informative-card-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

/* ICON STYLES */
.os-card-icon {
	margin-bottom: 1rem;
	display: block;
	transition: opacity 0.5s ease;
}

.os-card-icon img {
	width: 100px;
	height: 100px;
}

/* HEADLINE - LIMIT TO 2 LINES */
.os-card-headline h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* TEXT VISIBILITY ON HOVER */
.os-card-text.text-on-hover-only {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.5s ease, max-height 0.5s ease;
}

.os-informative-card:hover .os-card-text.text-on-hover-only {
	opacity: 1;
	max-height: 18vh;
	overflow: auto;
}

/* ICON TOGGLE CLASSES */
.os-card-icon.hide-default {
	display: none;
}

.os-informative-card:hover .os-card-icon.hide-hover {
	display: none;
}

.os-informative-card:hover .os-card-icon.hide-default {
	display: block;
}

/* RESPONSIVE - SMARTPHONES */
@media screen and (max-width: 768px) {
	.row.row-extended {
		margin: 14px 0px;
		max-width: 100%;
	}

	.os-columns-container h2 {
		font-size: 2.5rem;
	}

	.os-columns-container-headline span {
		font-size: 1.8rem;
	}

	.os-columns-container--column {
		padding: 12px;
	}

	.os-bullets-text {
		font-size: 0.8rem;
		width: 92%;
	}

	.os-bullets-icon {
		width: 32px;
		height: 32px;
	}

	.os-columns-container-priceRow span {
		font-size: 1.2rem;
	}

	/* Responsive grid fallback for smaller devices */
	.os-columns-container.os-columns-count-2,
	.os-columns-container.os-columns-count-3,
	.os-columns-container.os-columns-count-4,
	.os-columns-container.os-columns-count-5,
	.os-columns-container.os-columns-count-6 {
		grid-template-columns: 1fr;
	}

	.os-columns-container {
		gap: 6px;
	}

	.os-columns-container.os-columns-count-3 .os-columns-container--column {
		background: #fff;
		padding: 14px;
		box-shadow: -50px 50px 70px 0 rgba(0, 0, 0, 0.1);
	}
}

/* RESPONSIVE - TABLETS */
@media screen and (max-width: 1200px) {
	/* Add tablet-specific rules here if needed */
}
