/* Misc CSS */
.l-section-shape {
    Z-INDEX: 10;
    COLOR: #0d2c56;
}


/* ==========================================================================
   Member Diving — Product Card (Tauchausflüge/Dive Trips grid)
   Own class scheme, decoupled from Impreza's auto-generated usg_* classes
   (which are position-based and can silently renumber on template rebuilds).
   ========================================================================== */

.dnb-card {
	background-color: #fff;
	padding: 16px;
	border-radius: 24px;
	color: #000;
	box-shadow: 0 5px 15px rgb(0 0 0 / .1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* --- Image --- */
.dnb-card__image img {
	border-radius: 24px;
	width: 352px;
	height: 252px;
	object-fit: cover;
}

/* --- Sale badge --- */
.dnb-card__badge {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	position: absolute;
	top: 10px;
	left: 10px;
	padding-left: 0.8rem;
	padding-right: 0.8rem;
	border-radius: 9em;
	background: var(--color-content-primary);
}

/* --- Title --- */
.dnb-card__title {
	color: #000;
	font-size: 18px;
	font-family: var(--font-family);
	font-weight: 700;
	margin: 12px 0 8px;
	align-self: flex-start;
	text-align: left;
	width: 100%;
}

/* --- Short description --- */
.dnb-card__description {
	color: rgb(18 58 50 / .5);
	text-align: left;
	font-size: 14px;
	line-height: 21px;
	font-weight: 400;
	align-self: flex-start;
	width: 100%;
}

/* --- Separator --- */
.dnb-card__separator {
	width: 100%;
	border-top: 1px solid rgb(0 0 0 / .08);
	margin: 12px 0;
}

/* --- Info grid (Group Size / Duration) --- */
.dnb-card__info-grid {
	display: flex;
	width: 100%;
	justify-content: space-between;
	border-top: 1px solid rgb(0 0 0 / .08);
	border-bottom: 1px solid rgb(0 0 0 / .08);
	padding-top: 16px;
	padding-bottom: 16px;
	margin-top: auto;
}

/* Each info-item: icon, label, value stacked vertically and centered */
.dnb-card__info-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dnb-card__info-item i {
	font-size: 25px;
	margin-bottom: 4px;
	margin-top: 0;
	margin-left: 0;
	margin-right: 0!important;
	color: #c5aa42;
}

.dnb-card__info-item .w-post-elm-before {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
	line-height: 1;
	margin-bottom: 4px;
	display: block;
}

.dnb-card__info-item .w-post-elm-value {
	font-size: 13px;
	line-height: 1;
	font-weight: 500;
	display: block;
}

/* --- Price + Button row (matches the actual .price-button-wrapper class
       in the markup — arranged the same way as .dnb-card__info-grid above,
       i.e. space-between, top border, padding) --- */
.price-button-wrapper {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
}

/* --- Price --- */
.dnb-card__price {
	display: flex;
	flex-direction: column;
}
 
.dnb-card__price del {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
	order: 1;
}
 
.dnb-card__price ins {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	order: 2;
}

/* Plain price (no discount — just a bare .amount, no del/ins) */
.dnb-card__price > .amount {
	font-size: 20px;
	font-weight: 700;
	color: #000;
}

/* --- Book Now button wrapper (w-html element — Impreza gives these
       default block-level margin/width, which was throwing off alignment
       next to the price; this neutralizes it. margin-left: auto keeps the
       button pinned to the right even when there's no price element to
       space against.) --- */
.dnb-card__cta {
	margin: 0 0 0 auto;
	flex-shrink: 0;
}

.dnb-card__cta a.book-now-button {
	background-color: #c5aa42 !important;
	color: #fff !important;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-transform: none;
	border: none;
	white-space: nowrap;
	display: inline-block;
	min-width: 120px;
	height: 40px;
	line-height: 20px;
	transition: background-color 0.3s ease;
}
 
.dnb-card__cta a.book-now-button:hover {
	background-color: #ad9138 !important;
	color: #fff !important;
}