/**
 * Wellbeing Hub Panel Styles
 *
 * Panel for wellbeing/wellness content sections
 * Features image, text columns, and decorative underline
 *
 * Dependencies: ssa-base
 * Extracted from: styles.css lines 482-558, responsive rules from 768px, 480px
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

.wellbeing-hub-panel {
	position: relative;
	padding: var(--space-9) 0;
}

/* Panel heading now uses .panel-heading from panel-base.css */

.wellbeing-hub-panel h2,
.wellbeing-hub-panel h3 {
	margin-bottom: 10px;
	width: 60%;
}

.wellbeing-hub-panel h3 u,
.wellbeing-hub-panel h2 u {
	text-decoration: none;
	position: relative;
}

.wellbeing-hub-panel h3 u::after,
.wellbeing-hub-panel h2 u::after {
	background: url("../../img/underline-blue.webp") 100% 100% / cover no-repeat;
	bottom: -8px;
	content: '';
	display: block;
	height: 15%;
	left: 5%;
	right: 5%;
	position: absolute;
	width: 90%;
}

.wellbeing-hub-panel img.main-image {
	width: 100%;
}

.wellbeing-hub-panel .text {
	display: flex;
	gap: 130px;
}

.wellbeing-hub-panel .text .lhs-text {
	text-align: left;
	width: 50%;
}

.wellbeing-hub-panel .text .lhs-text h4 {
	font-size: 24px;
	font-weight: 900;
	line-height: 30px;
	margin-bottom: var(--space-4);
}

.wellbeing-hub-panel .text .lhs-text p {
	margin-bottom: var(--space-5);
}

.wellbeing-hub-panel .text .lhs-text .button {
	width: fit-content;
}

.wellbeing-hub-panel .text ul {
	list-style-type: none;
}

.wellbeing-hub-panel .text ul li {
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.wellbeing-hub-panel .text ul li img {
	margin-right: 15px;
}

/* ==========================================================================
   Responsive: Tablet (768px and below)
   ========================================================================== */

@media (max-width: 768px) {
	.wellbeing-hub-panel h3 {
		width: 100%;
		padding-left: 32px;
		padding-right: 32px;
	}

	.wellbeing-hub-panel .text {
		gap: var(--space-10);
		display: inline-block;
	}

	.wellbeing-hub-panel .text .lhs-text {
		margin-bottom: var(--space-7);
		width: 100%;
	}
}

/* ==========================================================================
   Responsive: Mobile (480px and below)
   ========================================================================== */

@media (max-width: 480px) {
	/* Panel heading mobile handled by .panel-heading in panel-base.css */

	.wellbeing-hub-panel h3 {
		padding-left: 16px;
		padding-right: 16px;
	}
}
