


.font-chinese {
	font-family: 'Noto Sans TC', sans-serif;
}

.font-serif-chinese {
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 700;
}

.text-tea-green {
	color: var(--greenthree) !important;
}

.text-earth-brown {
	color: var(--earth-brown) !important;
}

.text-warm-yellow {
	color: var(--warm-yellow) !important;
}

.bg-tea-gradient {
	background: linear-gradient(135deg, var(--greenthree) 0%, var(--greenthree-light) 100%);
}

.bg-hero-gradient {
	background: linear-gradient(135deg, var(--soft-cream) 0%, #e8f5e8 100%);
}

.btn-tea {
	background-color: var(--greenthree);
	border-color: var(--greenthree);
	color: var(--color-white);
}
.btn-tea:hover {
	background-color: var(--greenthree);
	border-color: var(--greenthree);
	color: var(--color-white);
}

.btn-tea-outline {
	color: var(--greenthree);
	border-color: var(--greenthree);
}
.btn-tea-outline:hover {
	background-color: var(--greenthree);
	border-color: var(--greenthree);
	color: var(--color-white);
}

.shadow-soft {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-warm {
	box-shadow: 0 10px 25px -3px rgba(40, 167, 69, 0.1), 0 4px 6px -2px rgba(40, 167, 69, 0.05);
}

.border-tea-green {
	border-color: var(--greenthree) !important;
}

.navbar-brand img {
	max-height: 52px;
	width: auto;
}

.navbar .navbar-nav .nav-link {
	font-size: 1.2rem;
	font-weight: 600;
}

.navbar .dropdown-menu .dropdown-item {
	font-size: 1.05rem;
}

.nav-link.active {
	color: var(--color-link-active);
	font-weight: 600;
}

.nav-link:hover {
	color: var(--color-link-hover);
}

.nav-item.nav-link {
	font-size: 1.12rem;
}

@media (max-width: 991.98px) {
	.navbar-brand img {
		max-height: 56px;
	}

	.navbar .navbar-nav .nav-link {
		font-size: 1.08rem;
	}
}

/* Floating robot button (image background remains dynamic inline) */
a.move-top {
	width: 100px;
	height: 100px;
	display: inline-block;
	position: fixed;
	bottom: 13%;
	right: 2%;
	z-index: 999;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 3px solid var(--color-white);
	animation: bounceIn 1s ease-out 1;
}

@keyframes bounceIn {
	0% {
		transform: scale(0.5) translateY(100px);
		opacity: 0;
	}
	60% {
		transform: scale(1.1) translateY(-15px);
		opacity: 1;
	}
	80% {
		transform: scale(0.95) translateY(5px);
	}
	100% {
		transform: scale(1) translateY(0);
	}
}

/* Chat hint position (complements inline base styles) */
#chat_hint {
	bottom: 27%;
}
@media (max-width: 1024px) and (min-width: 768px) {
	#chat_hint {
		bottom: 21%;
	}
}
@media (max-width: 767px) {
	#chat_hint {
		bottom: 27%;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Footer */
html,
body {
	min-height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.copyright,
.site-footer {
	margin-top: auto;
	flex-shrink: 0;
}

a:hover {
	color: var(--muted-foreground);
}

.site-footer {
	position: relative;
	background: #f7f8f5;
	border-top: 1px solid #e2e8e1;
	color: #79867f;
	opacity: 1;
}

.site-footer-main {
	padding: 50px 44px 0px 44px;
}

.site-footer-grid {
	display: grid;
	grid-template-columns: minmax(190px, 1.25fr) repeat(3, minmax(150px, 1fr));
	gap: clamp(2rem, 5vw, 5.5rem);
	align-items: start;
	margin-bottom: clamp(2rem, 4vw, 2.25rem);
	padding-top: 0;
}

.site-footer-brand {
	display: grid;
	gap: 1rem;
	justify-items: center;
}

.site-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  padding: .55rem .7rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--greentwo), #0b4b34);
  box-shadow: 0 12px 28px rgba(28, 54, 43, .12);
}

.site-footer > .site-footer-logo {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.site-footer-logo img {
  display: block;
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.site-footer-brand-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(100%, 280px);
	overflow: hidden;
	border: 1px solid rgba(18, 102, 63, .14);
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 251, 247, .98)),
		repeating-linear-gradient(135deg, rgba(25, 135, 84, .035) 0 1px, transparent 1px 16px);
	box-shadow: 0 18px 42px rgba(28, 54, 43, .11);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.site-footer-brand-card:hover {
	border-color: rgba(18, 102, 63, .28);
	box-shadow: 0 24px 54px rgba(28, 54, 43, .15);
	transform: translateY(-3px);
}

.site-footer-brand-card__header {
	padding: .45rem .55rem .45rem;
	background: var(--greenthree);
}

.site-footer-brand-card__logo {
	display: block;
	max-width: 100%;
	height: auto;
}

.site-footer-brand-card__sep {
	width: calc(100% - 2.3rem);
	height: 1px;
	margin: 0 auto;
	border: 0;
	background: linear-gradient(90deg, rgba(18, 102, 63, .22), rgba(18, 102, 63, .04));
	opacity: 1;
}

.site-footer-brand-card__body {
	flex: 1 1 auto;
	display: grid;
	gap: .8rem;
	padding: 1rem 1.15rem 1.15rem;
}

.site-footer-map-card {
	width: min(100%, 280px);
	border: 1px solid #d8e1d9;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(28, 54, 43, .08);
}

.site-footer-map {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #edf5ee, #f7f8f5);
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(28, 54, 43, .12);
}

.site-footer-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.site-footer-map-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: .15rem .1rem 0;
	background: transparent;
}

.site-footer-map-name {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	flex: 1 1 auto;
	min-width: 0;
	color: #243d33;
	font-size: .9rem;
	font-weight: 800;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-footer-map-name i {
	color: var(--earth-brown);
}

.site-footer-map-link {
	flex: 0 0 auto;
	margin-left: auto;
	color: var(--greentwo);
	font-size: .85rem;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.site-footer-map-link:hover,
.site-footer-map-link:focus {
	color: var(--earth-brown);
}

.site-footer-heading {
	display: inline-flex;
	align-items: center;
	gap: .48rem;
	margin: 0 0 1.25rem;
	color: var(--greenthree);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0;
}

.site-footer-heading i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	color: var(--greentwo);
	font-size: .95rem;
	line-height: 1;
}

.site-footer-list {
	display: grid;
	gap: .8rem;
}

.site-footer-link,
.site-footer-contact-link {
	color: #75837c;
	font-weight: 700;
	line-height: 1.55;
	text-decoration: none;
	transition: color .2s ease;
}

.site-footer-link:hover,
.site-footer-link:focus,
.site-footer-contact-link:hover,
.site-footer-contact-link:focus {
	color: var(--greentwo);
}

.site-footer-contact-group {
	display: flex;
	align-items: flex-start;
	gap: .45rem;
	margin: 0;
}

.site-footer-contact-label,
.site-footer-contact-text {
	margin: 0;
	color: #75837c;
	font-weight: 700;
	line-height: 1.55;
}

.site-footer-contact-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 1.15rem;
	width: 1.15rem;
	min-height: 1.55em;
	margin-bottom: 0;
	color: #6d7b74;
	font-weight: 800;
}

.site-footer-contact-label i {
	font-size: .95rem;
	line-height: 1;
}

/*.site-footer-contact-reservation .site-footer-contact-label,
.site-footer-contact-reservation .site-footer-contact-text {
	color: #75837c;
}*/

.site-footer-bottom {
	background: #f7f8f5;
	border-top: 1px solid #e4eae3;
	padding: 1.1rem 0;
}

.site-footer-bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	flex-wrap: wrap;
}

.site-footer-copy {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .25rem .45rem;
	margin: 0;
	color: #657169;
	font-size: .95rem;
	font-weight: 600;
	line-height: 1.6;
	min-width: 0;
}

.site-footer-copy-line {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.site-footer-copy .fa-copyright {
	margin-right: .45rem;
}

.site-footer-copy a {
	color: var(--greentwo);
	text-decoration: none;
	/*border-bottom: 1px solid currentColor;*/
}

.site-footer-copy a:hover,
.site-footer-copy a:focus {
	color: var(--earth-brown);
}

.footer-social-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	flex-wrap: wrap;
}

.footer-social-mini {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #d8e1d9;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #3f6754;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-mini:hover {
	border-color: var(--greentwo);
	background: var(--greentwo);
	color: #fff;
	transform: translateY(-2px);
}

.footer-social-mini.is-disabled {
	color: #a1aaa4;
	pointer-events: none;
}

@media (max-width: 991.98px) {
	.site-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 3rem;
	}
}

@media (min-width: 992px) {
	.site-footer-bottom-row {
		padding-right: 4.75rem;
	}
}

@media (max-width: 575.98px) {
	.site-footer-main {
		padding: 68px 0 32px;
	}

	.site-footer > .site-footer-logo {
		width: min(78vw, 220px);
	}

	.site-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: left;
	}

	.site-footer-brand-card,
	.site-footer-map-card {
		width: 100%;
		max-width: 100%;
	}

	.site-footer-map {
		aspect-ratio: 16 / 9;
	}

	.site-footer-map-bar {
		align-items: flex-start;
		flex-direction: column;
		gap: .35rem;
	}

	.site-footer-map-link {
		margin-left: 1.35rem;
	}

	.site-footer-bottom-row {
		justify-content: center;
		text-align: center;
	}

	.site-footer-copy {
		display: grid;
		justify-items: center;
		text-align: center;
		gap: .2rem;
		width: 100%;
	}
}

/* =====================
   HomeOne/Index page styles
   Scoped under .p-homeone-index
===================== */
.p-homeone-index .hero-image {
	position: relative;
}
.p-homeone-index .hero-img {
	width: 100%;
	max-height: 100vh;
	/*aspect-ratio: 21 / 9;*/
	object-position: center;
	opacity: 0.9;
	transition: aspect-ratio 0.3s ease;
}
.p-homeone-index .hero-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(84%, 960px);
	color: var(--color-white);
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
	pointer-events: none;
	z-index: 2;
}
@media (max-width: 991.98px) {
	.p-homeone-index .hero-img {
		aspect-ratio: 16 / 9;
		max-height: 65vh;
	}

	.p-homeone-index .hero-title {
		font-size: 2.25rem;
	}
}
@media (max-width: 575.98px) {
	.p-homeone-index .hero-img {
		aspect-ratio: auto;
		max-height: 55vh;
		object-fit: contain;
		background-color: var(--color-black);
	}

	.p-homeone-index .hero-title {
		font-size: 1.5rem;
		width: 88%;
	}
}

/* Course weather strip */
.p-homeone-index .course-weather-section {
	position: relative;
	z-index: 6;
	margin-top: -54px;
	padding: 0 0 2rem;
}
.p-homeone-index .course-weather-panel {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(190px, 0.55fr) minmax(0, 2.25fr);
	gap: 1.35rem;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
	border: 1px solid rgba(25, 135, 84, 0.18);
	/*border-left: 6px solid var(--greenthree);*/
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(31, 45, 36, 0.18);
	padding: 1.2rem 1.25rem;
	backdrop-filter: blur(10px);
}
.p-homeone-index .course-weather-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, rgba(25, 135, 84, 0.035) 0 1px, transparent 1px 18px);
	pointer-events: none;
}
.p-homeone-index .course-weather-panel > * {
	position: relative;
	z-index: 1;
}
.p-homeone-index .weather-summary {
	min-width: 0;
	padding-right: 1rem;
	border-right: 1px solid rgba(25, 135, 84, 0.16);
}
.p-homeone-index .weather-eyebrow {
	display: inline-flex;
	color: var(--earth-brown);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.55rem;
}
.p-homeone-index .weather-heading {
	color: var(--greentwo);
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}
.p-homeone-index .weather-meta {
	color: #6a766f;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0.65rem 0 0;
}
.p-homeone-index .weather-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.8rem;
	min-width: 0;
}
.p-homeone-index .weather-metric {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0.65rem;
	min-width: 0;
	min-height: 112px;
	padding: 0.95rem 0.95rem 0.9rem;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(25, 135, 84, 0.13);
	border-radius: 8px;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.p-homeone-index .weather-metric:hover {
	transform: translateY(-2px);
	border-color: rgba(25, 135, 84, 0.24);
	box-shadow: 0 10px 22px rgba(31, 45, 36, 0.09);
}
.p-homeone-index .course-weather-panel.is-loading .weather-value {
	opacity: 0.68;
}
.p-homeone-index .course-weather-panel.is-unavailable .weather-meta {
	color: #9a681f;
}
.p-homeone-index .weather-metric-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}
.p-homeone-index .weather-icon {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	border-radius: 50%;
	font-size: 0.92rem;
}
.p-homeone-index .weather-icon-condition {
	color: #8b6508;
	background: #fff7d6;
}
.p-homeone-index .weather-icon-temp {
	color: #b76110;
	background: #fff3df;
}
.p-homeone-index .weather-icon-wind {
	color: var(--greentwo);
	background: #e8f5ee;
}
.p-homeone-index .weather-icon-rain {
	color: #2368a8;
	background: #eaf3ff;
}
.p-homeone-index .weather-label {
	color: #5c685f;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}
.p-homeone-index .weather-value {
	display: flex;
	align-items: flex-end;
	gap: 0.18rem;
	color: #17251c;
	font-weight: 900;
	line-height: 1.2;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.p-homeone-index .weather-value > span:first-child {
	font-size: 2rem;
	letter-spacing: 0;
}
.p-homeone-index .weather-unit {
	color: #607066;
	font-size: 0.84rem;
	font-weight: 800;
	margin-bottom: 0.18rem;
}
.p-homeone-index .weather-value-text > span:first-child {
	font-size: 1.32rem;
	line-height: 1.25;
	white-space: normal;
}
@media (max-width: 991.98px) {
	.p-homeone-index .course-weather-section {
		margin-top: -30px;
	}
	.p-homeone-index .course-weather-panel {
		grid-template-columns: 1fr;
		gap: 1.05rem;
	}
	.p-homeone-index .weather-summary {
		padding-right: 0;
		padding-bottom: 1rem;
		border-right: 0;
		border-bottom: 1px solid rgba(25, 135, 84, 0.16);
	}
}
@media (max-width: 575.98px) {
	.p-homeone-index .course-weather-section {
		margin-top: 0;
		padding-top: 1rem;
	}
	.p-homeone-index .course-weather-panel {
		padding: 1rem;
	}
	.p-homeone-index .weather-heading {
		font-size: 1.25rem;
	}
	.p-homeone-index .weather-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.45rem;
	}
	.p-homeone-index .weather-metric {
		min-height: 96px;
		padding: 0.65rem 0.55rem;
	}
	.p-homeone-index .weather-metric-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
	}
	.p-homeone-index .weather-icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
		font-size: 0.82rem;
	}
	.p-homeone-index .weather-label {
		font-size: 0.76rem;
		white-space: normal;
	}
	.p-homeone-index .weather-value > span:first-child {
		font-size: 1.38rem;
	}
	.p-homeone-index .weather-value-text > span:first-child {
		font-size: 1.05rem;
	}
	.p-homeone-index .weather-unit {
		font-size: 0.68rem;
	}
}
@media (max-width: 374px) {
	.p-homeone-index .weather-metrics {
		grid-template-columns: 1fr;
	}
	.p-homeone-index .weather-metric {
		min-height: auto;
	}
}
@media (prefers-reduced-motion: reduce) {
	.p-homeone-index .weather-metric {
		transition: none;
	}
	.p-homeone-index .weather-metric:hover {
		transform: none;
	}
}

/* Product section */
.p-homeone-index .card {
	transition: all 0.25s ease;
}
.p-homeone-index .card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
}
.p-homeone-index .text-muted {
	font-size: 0.95rem;
}
.p-homeone-index .btn-outline-success {
	border-radius: 20px;
	font-size: 0.9rem;
}
.p-homeone-index .product-slider {
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
	gap: 1rem;
	padding-bottom: 1rem;
}
.p-homeone-index .product-slider::-webkit-scrollbar {
	display: none;
}
.p-homeone-index .product-item {
	flex: 0 0 calc(33.333% - 1rem);
}
@media (max-width: 992px) {
	.p-homeone-index .product-item {
		flex: 0 0 calc(50% - 1rem);
	}
}
@media (max-width: 576px) {
	.p-homeone-index .product-item {
		flex: 0 0 calc(100% - 1rem);
	}
}
.p-homeone-index .nav-arrow {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(40, 167, 69, 0.3);
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	color: var(--greenthree);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 5;
}
.p-homeone-index .nav-arrow:hover {
	background: var(--greenthree);
	color: var(--color-white);
	transform: translateY(-50%) scale(1.1);
}
.p-homeone-index .left-arrow {
	left: -15px;
}
.p-homeone-index .right-arrow {
	right: -15px;
}
@media (max-width: 576px) {
	.p-homeone-index .nav-arrow {
		display: none !important;
	}
	.p-homeone-index .swipe-hint {
		display: block;
	}
}
.p-homeone-index .swipe-hint {
	display: none;
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(40, 167, 69, 0.9);
	color: var(--color-white);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	opacity: 0;
	animation: fadeInOut 4s ease-in-out forwards;
	z-index: 10;
}
@keyframes fadeInOut {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(10px);
	}
	10% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(10px);
	}
}

/* News section */
.p-homeone-index .news-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: linear-gradient(135deg, #f8fdf9 0%, var(--color-white) 100%);
}
.p-homeone-index .carousel-container {
	display: flex;
	transition: transform 0.5s ease-in-out;
}
.p-homeone-index .carousel-slide {
	width: 100%;
	flex-shrink: 0;
	min-height: 500px;
	user-select: none;
}
.p-homeone-index .slide-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100%;
	align-items: center;
	transition: transform 140ms ease, box-shadow 140ms ease;
	will-change: transform;
	cursor: pointer;
}
.p-homeone-index .carousel-slide:hover .slide-content {
	transform: translateZ(0) scale(1.01);
	box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.p-homeone-index .slide-content.clicked {
	animation: pressPop 220ms ease-out;
}
@keyframes pressPop {
	0% { transform: scale(1); }
	50% { transform: scale(0.98); }
	100% { transform: scale(1.02); }
}
.p-homeone-index .slide-image {
	height: 500px;
	object-fit: cover;
	position: relative;
}
.p-homeone-index .slide-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.1) 100%);
	pointer-events: none;
}
.p-homeone-index .slide-text {
	padding: 3rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.p-homeone-index .news-badge {
	display: inline-block;
	background: var(--earth-brown);
	color: var(--color-white);
	padding: 0.5rem 1.2rem;
	border-radius: 25px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}
.p-homeone-index .news-title {
	color: var(--greentwo);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}
.p-homeone-index .news-description {
	color: #000;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}
.p-homeone-index .btn-group-news {
	display: flex;
	gap: 1rem;
}
.p-homeone-index .btn-group-news a {
	cursor: pointer;
}
.p-homeone-index .nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: 1px solid rgba(40, 167, 69, 0.2);
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	z-index: 10;
}
.p-homeone-index .nav-button:hover {
	background: color-mix(in srgb, var(--greenthree) 12%, transparent);
	border-color: var(--greenthree);
	transform: translateY(-50%) scale(1.1);
}
.p-homeone-index .nav-button.prev { left: 5px; }
.p-homeone-index .nav-button.next { right: 5px; }
.p-homeone-index .nav-button i {
	color: var(--greenthree);
	font-size: 1.2rem;
}
@media (max-width: 768px) {
	.p-homeone-index .slide-content {
		grid-template-columns: 1fr;
		grid-template-rows: 250px 1fr;
	}
	.p-homeone-index .slide-image { height: 250px; }
	.p-homeone-index .slide-text { padding: 2rem 1.5rem; }
	.p-homeone-index .news-title { font-size: 19px; text-align: center; }
	.p-homeone-index .btn-group-news {
		flex-direction: column;
		align-items: stretch;
	}
	.p-homeone-index .news-badge { text-align: center; }
}

/* =====================
   Blogs/Blogs page styles
   Scoped under .p-blogs-blogs
===================== */
.p-blogs-blogs .hero-image { position: relative; }
.p-blogs-blogs .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-blogs-blogs .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-blogs-blogs .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-blogs-blogs .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-blogs-blogs .hero-text { padding: .5rem; }
}
.p-blogs-blogs .category-scroll-container { min-height: 2.5rem; }
.p-blogs-blogs .category-scroll-wrapper {
	overflow: hidden; --category-pill-width: 9rem;
	max-width: min(100%, var(--category-scroll-max, calc(var(--visible-category-count, 5)*var(--category-pill-width))));
}
.p-blogs-blogs .category-scroll {
	overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
}
.p-blogs-blogs .category-scroll::-webkit-scrollbar { display: none; }
.p-blogs-blogs .category-scroll-btn { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; }
.p-blogs-blogs .btn-outline-success.active,
.p-blogs-blogs .btn-outline-success[aria-pressed="true"] {
	color: var(--color-white); background-color: var(--greenthree); border-color: var(--greenthree);
}
.p-blogs-blogs .btn-outline-success:hover {
	background-color: var(--greenthree); border-color: var(--greenthree); color: var(--color-white);
}
.p-blogs-blogs #blogSearch:focus { border-color: var(--greenthree); box-shadow: 0 0 0 .2rem var(--greenthree); }

.p-blogs-blogs .blog-card {
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	background: #fff; cursor: pointer;
}
.p-blogs-blogs .blog-card .card-img-top {
	border-top-left-radius: 14px; border-top-right-radius: 14px; transition: transform .35s ease;
}
.p-blogs-blogs .blog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	border-color: rgba(25,135,84,.25) !important;
}
.p-blogs-blogs .blog-card:hover .card-img-top { transform: scale(1.03); }
.p-blogs-blogs .line-clamp-2 {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.p-blogs-blogs .line-clamp-3 {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.p-blogs-blogs .text-emphasis { color: var(--greentwo); }
.p-blogs-blogs .text-secondary-emphasis { color: #5f6b73; }
.p-blogs-blogs .icon-nudge { transition: transform .18s ease; }
.p-blogs-blogs .blog-card:hover .icon-nudge { transform: translateX(2px); }
.p-blogs-blogs .blog-card .card-title { font-size: 1.25rem; }
@media (prefers-reduced-motion:reduce) {
	.p-blogs-blogs .blog-card, .p-blogs-blogs .icon-nudge { transition: none !important; }
}
.p-blogs-blogs .shadow-sm2 { box-shadow: 0 .125rem .25rem rgb(0 0 0 / 35%) !important; }
.p-blogs-blogs .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1;
	display: inline-flex; align-items: center;
}
@media (max-width: 991.98px) {
	.p-blogs-blogs .blog-card { border-radius: 12px; }
	.p-blogs-blogs .blog-card .card-body { padding: 1.1rem 1.25rem; }
	.p-blogs-blogs .blog-card .card-title { font-size: 1.15rem; }
	.p-blogs-blogs .blog-card .card-text { font-size: .96rem; }
}
@media (max-width: 767.98px) {
	.p-blogs-blogs .category-scroll-container { gap: .75rem; }
	.p-blogs-blogs .category-scroll-wrapper { padding-inline: .25rem; max-width: 100%; }
	.p-blogs-blogs .category-scroll { gap: .75rem; }
	.p-blogs-blogs .category-scroll-btn { width: 2.25rem; height: 2.25rem; }
	.p-blogs-blogs .blog-card .card-body { padding: 1rem 1.1rem; }
	.p-blogs-blogs .blog-card .card-title { font-size: 1.08rem; }
	.p-blogs-blogs .blog-card .card-text { font-size: .94rem; }
	.p-blogs-blogs .news-tag { font-size: .78rem; }
}
@media (max-width: 575.98px) {
	.p-blogs-blogs .category-scroll-container { flex-direction: column; align-items: stretch; gap: .75rem; }
	.p-blogs-blogs .category-scroll-wrapper { padding-inline: 0; }
	.p-blogs-blogs .category-scroll { gap: .6rem; padding-bottom: .25rem; }
	.p-blogs-blogs .category-scroll-btn { width: 100%; max-width: 3rem; justify-content: center; }
	.p-blogs-blogs .ratio.ratio-16x9 { --bs-aspect-ratio: 68%; }
	.p-blogs-blogs .blog-card .card-body { padding: .85rem .9rem 1rem; }
	.p-blogs-blogs .blog-card .card-title { font-size: 1.02rem; }
	.p-blogs-blogs .blog-card .card-text { font-size: .9rem; }
}
.p-blogs-blogs .text-muted2 { color: var(--color-black) !important; }
.p-blogs-blogs .min-w-0 { min-width: 0; }

/* =====================
   Blogs/BlogsDetail page styles
   Scoped under .p-blogs-blogsdetail
===================== */
.p-blogs-blogsdetail .hero-image { position: relative; }
.p-blogs-blogsdetail .hero-img { max-height: 55vh; aspect-ratio: 21/9; object-fit: cover; }
.p-blogs-blogsdetail .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-blogs-blogsdetail .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-blogs-blogsdetail .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: #000; }
	.p-blogs-blogsdetail .hero-text { padding: .5rem; }
}
.p-blogs-blogsdetail .blog-article .article-cover { max-height: 460px; object-fit: cover; }
.p-blogs-blogsdetail .prose :is(h2, h3, h4) {
	color: #000;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.p-blogs-blogsdetail .prose p { line-height: 1.9; margin-bottom: 1.2rem; }
.p-blogs-blogsdetail .prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0;/* box-shadow: 0 8px 24px rgba(0,0,0,.08);*/ }
.p-blogs-blogsdetail .recommendation-card { border-radius: 1rem; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.p-blogs-blogsdetail .recommendation-card:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(0,0,0,.12); }
.p-blogs-blogsdetail .recommendation-cover { height: 200px; object-fit: cover; }
.p-blogs-blogsdetail .text-coffee { color: var(--earth-brown) !important; }
.p-blogs-blogsdetail .bg-coffee-subtle { background-color: #f7ebe3 !important; }
.p-blogs-blogsdetail .text-bg-coffee { background-color: var(--earth-brown) !important; color: var(--color-white) !important; }
.p-blogs-blogsdetail .badge.text-bg-coffee { transition: all 0.25s ease; }
.p-blogs-blogsdetail .badge.text-bg-coffee:hover {
	background-color: var(--color-coffee-700) !important; color: var(--color-white) !important; transform: translateY(-1px);
	box-shadow: 0 .25rem .5rem rgba(0,0,0,0.1);
}
@media (max-width: 991.98px) {
	.p-blogs-blogsdetail .badge.text-bg-coffee { font-size: .85rem; padding: .4em .7em; }
}
@media (max-width: 575.98px) {
	.p-blogs-blogsdetail .badge.text-bg-coffee { font-size: .8rem; padding: .35em .6em; }
}
.p-blogs-blogsdetail .shadow-sm2 { box-shadow: 0 .125rem .25rem 4px #78787833 !important; }
.p-blogs-blogsdetail .text-muted2 { color: #6c757d !important; }
.p-blogs-blogsdetail .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1; display: inline-flex; align-items: center;
}

/* =====================
   Blogs3 pages share the Blogs visual treatment
===================== */
.p-blogs3-blogs3 .hero-image { position: relative; }
.p-blogs3-blogs3 .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-blogs3-blogs3 .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-blogs3-blogs3 .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-blogs3-blogs3 .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-blogs3-blogs3 .hero-text { padding: .5rem; }
}
.p-blogs3-blogs3 .category-scroll-container { min-height: 2.5rem; }
.p-blogs3-blogs3 .category-scroll-wrapper {
	overflow: hidden; --category-pill-width: 9rem;
	max-width: min(100%, var(--category-scroll-max, calc(var(--visible-category-count, 5)*var(--category-pill-width))));
}
.p-blogs3-blogs3 .category-scroll {
	overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
}
.p-blogs3-blogs3 .category-scroll::-webkit-scrollbar { display: none; }
.p-blogs3-blogs3 .category-scroll-btn { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; }
.p-blogs3-blogs3 .btn-outline-success.active,
.p-blogs3-blogs3 .btn-outline-success[aria-pressed="true"] {
	color: var(--color-white); background-color: var(--greenthree); border-color: var(--greenthree);
}
.p-blogs3-blogs3 .btn-outline-success:hover {
	background-color: var(--greenthree); border-color: var(--greenthree); color: var(--color-white);
}
.p-blogs3-blogs3 #blogSearch:focus { border-color: var(--greenthree); box-shadow: 0 0 0 .2rem var(--greenthree); }
.p-blogs3-blogs3 .blog-card {
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	background: #fff; cursor: pointer;
}
.p-blogs3-blogs3 .blog-card .card-img-top {
	border-top-left-radius: 14px; border-top-right-radius: 14px; transition: transform .35s ease;
}
.p-blogs3-blogs3 .blog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	border-color: rgba(25,135,84,.25) !important;
}
.p-blogs3-blogs3 .blog-card:hover .card-img-top { transform: scale(1.03); }
.p-blogs3-blogs3 .line-clamp-2 {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.p-blogs3-blogs3 .line-clamp-3 {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.p-blogs3-blogs3 .text-emphasis { color: var(--greentwo); }
.p-blogs3-blogs3 .text-secondary-emphasis { color: #5f6b73; }
.p-blogs3-blogs3 .icon-nudge { transition: transform .18s ease; }
.p-blogs3-blogs3 .blog-card:hover .icon-nudge { transform: translateX(2px); }
.p-blogs3-blogs3 .blog-card .card-title { font-size: 1.25rem; }
@media (prefers-reduced-motion:reduce) {
	.p-blogs3-blogs3 .blog-card, .p-blogs3-blogs3 .icon-nudge { transition: none !important; }
}
.p-blogs3-blogs3 .shadow-sm2 { box-shadow: 0 .125rem .25rem rgb(0 0 0 / 35%) !important; }
.p-blogs3-blogs3 .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1;
	display: inline-flex; align-items: center;
}
@media (max-width: 991.98px) {
	.p-blogs3-blogs3 .blog-card { border-radius: 12px; }
	.p-blogs3-blogs3 .blog-card .card-body { padding: 1.1rem 1.25rem; }
	.p-blogs3-blogs3 .blog-card .card-title { font-size: 1.15rem; }
	.p-blogs3-blogs3 .blog-card .card-text { font-size: .96rem; }
}
@media (max-width: 767.98px) {
	.p-blogs3-blogs3 .category-scroll-container { gap: .75rem; }
	.p-blogs3-blogs3 .category-scroll-wrapper { padding-inline: .25rem; max-width: 100%; }
	.p-blogs3-blogs3 .category-scroll { gap: .75rem; }
	.p-blogs3-blogs3 .category-scroll-btn { width: 2.25rem; height: 2.25rem; }
	.p-blogs3-blogs3 .blog-card .card-body { padding: 1rem 1.1rem; }
	.p-blogs3-blogs3 .blog-card .card-title { font-size: 1.08rem; }
	.p-blogs3-blogs3 .blog-card .card-text { font-size: .94rem; }
	.p-blogs3-blogs3 .news-tag { font-size: .78rem; }
}
@media (max-width: 575.98px) {
	.p-blogs3-blogs3 .category-scroll-container { flex-direction: column; align-items: stretch; gap: .75rem; }
	.p-blogs3-blogs3 .category-scroll-wrapper { padding-inline: 0; }
	.p-blogs3-blogs3 .category-scroll { gap: .6rem; padding-bottom: .25rem; }
	.p-blogs3-blogs3 .category-scroll-btn { width: 100%; max-width: 3rem; justify-content: center; }
	.p-blogs3-blogs3 .ratio.ratio-16x9 { --bs-aspect-ratio: 68%; }
	.p-blogs3-blogs3 .blog-card .card-body { padding: .85rem .9rem 1rem; }
	.p-blogs3-blogs3 .blog-card .card-title { font-size: 1.02rem; }
	.p-blogs3-blogs3 .blog-card .card-text { font-size: .9rem; }
}
.p-blogs3-blogs3 .text-muted2 { color: var(--color-black) !important; }
.p-blogs3-blogs3 .min-w-0 { min-width: 0; }

.p-blogs3-blogs3detail .hero-image { position: relative; }
.p-blogs3-blogs3detail .hero-img { max-height: 55vh; aspect-ratio: 21/9; object-fit: cover; }
.p-blogs3-blogs3detail .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-blogs3-blogs3detail .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-blogs3-blogs3detail .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: #000; }
	.p-blogs3-blogs3detail .hero-text { padding: .5rem; }
}
.p-blogs3-blogs3detail .blog-article .article-cover { max-height: 460px; object-fit: cover; }
.p-blogs3-blogs3detail .prose :is(h2, h3, h4) {
	color: #000;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.p-blogs3-blogs3detail .prose p { line-height: 1.9; margin-bottom: 1.2rem; }
.p-blogs3-blogs3detail .prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0;/* box-shadow: 0 8px 24px rgba(0,0,0,.08);*/ }
.p-blogs3-blogs3detail .recommendation-card { border-radius: 1rem; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.p-blogs3-blogs3detail .recommendation-card:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(0,0,0,.12); }
.p-blogs3-blogs3detail .recommendation-cover { height: 200px; object-fit: cover; }
.p-blogs3-blogs3detail .text-coffee { color: var(--earth-brown) !important; }
.p-blogs3-blogs3detail .bg-coffee-subtle { background-color: #f7ebe3 !important; }
.p-blogs3-blogs3detail .text-bg-coffee { background-color: var(--earth-brown) !important; color: var(--color-white) !important; }
.p-blogs3-blogs3detail .badge.text-bg-coffee { transition: all 0.25s ease; }
.p-blogs3-blogs3detail .badge.text-bg-coffee:hover {
	background-color: var(--color-coffee-700) !important; color: var(--color-white) !important; transform: translateY(-1px);
	box-shadow: 0 .25rem .5rem rgba(0,0,0,0.1);
}
@media (max-width: 991.98px) {
	.p-blogs3-blogs3detail .badge.text-bg-coffee { font-size: .85rem; padding: .4em .7em; }
}
@media (max-width: 575.98px) {
	.p-blogs3-blogs3detail .badge.text-bg-coffee { font-size: .8rem; padding: .35em .6em; }
}
.p-blogs3-blogs3detail .shadow-sm2 { box-shadow: 0 .125rem .25rem 4px #78787833 !important; }
.p-blogs3-blogs3detail .text-muted2 { color: #6c757d !important; }
.p-blogs3-blogs3detail .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1; display: inline-flex; align-items: center;
}


/* =====================
   Notes/Notes page styles
   Scoped under .p-notes-notes
===================== */
.p-notes-notes .hero-image { position: relative; }
.p-notes-notes .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-notes-notes .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-notes-notes .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-notes-notes .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-notes-notes .hero-text { padding: .5rem; }
}
.p-notes-notes .category-scroll-container { min-height: 2.5rem; }
.p-notes-notes .category-scroll-wrapper {
	overflow: hidden; --category-pill-width: 9rem;
	max-width: min(100%, var(--category-scroll-max, calc(var(--visible-category-count, 5)*var(--category-pill-width))));
}
.p-notes-notes .category-scroll {
	overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth;
}
.p-notes-notes .category-scroll::-webkit-scrollbar { display: none; }
.p-notes-notes .category-scroll-btn { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; }
.p-notes-notes .btn-outline-success.active,
.p-notes-notes .btn-outline-success[aria-pressed="true"] {
	color: var(--color-white); background-color: var(--greenthree); border-color: var(--greenthree);
}
.p-notes-notes .btn-outline-success:hover {
	background-color: var(--greenthree); border-color: var(--greenthree); color: var(--color-white);
}
.p-notes-notes #blogSearch:focus { border-color: var(--greenthree); box-shadow: 0 0 0 .2rem var(--greenthree); }

.p-notes-notes .blog-card {
	border-radius: 14px;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	background: #fff; cursor: pointer;
}
.p-notes-notes .blog-card .card-img-top {
	border-top-left-radius: 14px; border-top-right-radius: 14px; transition: transform .35s ease;
}
.p-notes-notes .blog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0,0,0,.12);
	border-color: rgba(25,135,84,.25) !important;
}
.p-notes-notes .blog-card:hover .card-img-top { transform: scale(1.03); }
.p-notes-notes .line-clamp-2 {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.p-notes-notes .line-clamp-3 {
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.p-notes-notes .text-emphasis { color: var(--greentwo); }
.p-notes-notes .text-secondary-emphasis { color: #5f6b73; }
.p-notes-notes .icon-nudge { transition: transform .18s ease; }
.p-notes-notes .blog-card:hover .icon-nudge { transform: translateX(2px); }
.p-notes-notes .blog-card .card-title { font-size: 1.25rem; }
@media (prefers-reduced-motion:reduce) {
	.p-notes-notes .blog-card, .p-notes-notes .icon-nudge { transition: none !important; }
}
.p-notes-notes .shadow-sm2 { box-shadow: 0 .125rem .25rem rgb(0 0 0 / 35%) !important; }
.p-notes-notes .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1;
	display: inline-flex; align-items: center;
}
@media (max-width: 991.98px) {
	.p-notes-notes .blog-card { border-radius: 12px; }
	.p-notes-notes .blog-card .card-body { padding: 1.1rem 1.25rem; }
	.p-notes-notes .blog-card .card-title { font-size: 1.15rem; }
	.p-notes-notes .blog-card .card-text { font-size: .96rem; }
}
@media (max-width: 767.98px) {
	.p-notes-notes .category-scroll-container { gap: .75rem; }
	.p-notes-notes .category-scroll-wrapper { padding-inline: .25rem; max-width: 100%; }
	.p-notes-notes .category-scroll { gap: .75rem; }
	.p-notes-notes .category-scroll-btn { width: 2.25rem; height: 2.25rem; }
	.p-notes-notes .blog-card .card-body { padding: 1rem 1.1rem; }
	.p-notes-notes .blog-card .card-title { font-size: 1.08rem; }
	.p-notes-notes .blog-card .card-text { font-size: .94rem; }
	.p-notes-notes .news-tag { font-size: .78rem; }
}
@media (max-width: 575.98px) {
	.p-notes-notes .category-scroll-container { flex-direction: column; align-items: stretch; gap: .75rem; }
	.p-notes-notes .category-scroll-wrapper { padding-inline: 0; }
	.p-notes-notes .category-scroll { gap: .6rem; padding-bottom: .25rem; }
	.p-notes-notes .category-scroll-btn { width: 100%; max-width: 3rem; justify-content: center; }
	.p-notes-notes .ratio.ratio-16x9 { --bs-aspect-ratio: 68%; }
	.p-notes-notes .blog-card .card-body { padding: .85rem .9rem 1rem; }
	.p-notes-notes .blog-card .card-title { font-size: 1.02rem; }
	.p-notes-notes .blog-card .card-text { font-size: .9rem; }
}
.p-notes-notes .text-muted2 { color: var(--color-black) !important; }
.p-notes-notes .min-w-0 { min-width: 0; }

/* =====================
   Notes/NotesDetail page styles
   Scoped under .p-notes-notesdetail
===================== */
.p-notes-notesdetail .hero-image { position: relative; }
.p-notes-notesdetail .hero-img { max-height: 55vh; aspect-ratio: 21/9; object-fit: cover; }
.p-notes-notesdetail .hero-text {
	position: absolute; inset: 0; display: grid; place-items: center;
	text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem;
}
@media (max-width: 991.98px) {
	.p-notes-notesdetail .hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 575.98px) {
	.p-notes-notesdetail .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: #000; }
	.p-notes-notesdetail .hero-text { padding: .5rem; }
}
.p-notes-notesdetail .blog-article .article-cover { max-height: 460px; object-fit: cover; }
.p-notes-notesdetail .prose :is(h2, h3, h4) {
	color: #000;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.p-notes-notesdetail .prose p { line-height: 1.9; margin-bottom: 1.2rem; }
.p-notes-notesdetail .prose img { max-width: 100%; border-radius: 0.75rem; margin: 1.5rem 0;/* box-shadow: 0 8px 24px rgba(0,0,0,.08);*/ }
.p-notes-notesdetail .recommendation-card { border-radius: 1rem; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.p-notes-notesdetail .recommendation-card:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(0,0,0,.12); }
.p-notes-notesdetail .recommendation-cover { height: 200px; object-fit: cover; }
.p-notes-notesdetail .text-coffee { color: var(--earth-brown) !important; }
.p-notes-notesdetail .bg-coffee-subtle { background-color: #f7ebe3 !important; }
.p-notes-notesdetail .text-bg-coffee { background-color: var(--earth-brown) !important; color: var(--color-white) !important; }
.p-notes-notesdetail .badge.text-bg-coffee { transition: all 0.25s ease; }
.p-notes-notesdetail .badge.text-bg-coffee:hover {
	background-color: var(--color-coffee-700) !important; color: var(--color-white) !important; transform: translateY(-1px);
	box-shadow: 0 .25rem .5rem rgba(0,0,0,0.1);
}
@media (max-width: 991.98px) {
	.p-notes-notesdetail .badge.text-bg-coffee { font-size: .85rem; padding: .4em .7em; }
}
@media (max-width: 575.98px) {
	.p-notes-notesdetail .badge.text-bg-coffee { font-size: .8rem; padding: .35em .6em; }
}
.p-notes-notesdetail .shadow-sm2 { box-shadow: 0 .125rem .25rem 4px #78787833 !important; }
.p-notes-notesdetail .text-muted2 { color: #6c757d !important; }
.p-notes-notesdetail .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1; display: inline-flex; align-items: center;
}

/* =====================
   News/LatestNewsDetail page styles
   Scoped under .p-news-latestnewsdetail
===================== */
.p-news-latestnewsdetail .hero-image { position: relative; }
.p-news-latestnewsdetail .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-news-latestnewsdetail .hero-text { position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem; }
@media (max-width: 991.98px) { .p-news-latestnewsdetail .hero-img { aspect-ratio: 16/9; } }
@media (max-width: 575.98px) {
.p-news-latestnewsdetail .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-news-latestnewsdetail .hero-text { padding: .5rem; }
}
.p-news-latestnewsdetail .text-muted2 { color: var(--muted-foreground) !important; }
.p-news-latestnewsdetail .container-xxl { max-width: 1440px; }
.p-news-latestnewsdetail .news-card {
	position: relative; display: flex; flex-direction: column;
	border: 2px solid var(--color-border-subtle); border-radius: 1rem; padding: 1.25rem 1.5rem 1rem;
	background: var(--color-white); gap: 1rem;
}
.p-news-latestnewsdetail .news-thumb { border-radius: .5rem; overflow: hidden; display: block; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.p-news-latestnewsdetail .news-thumb .img-cover { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.p-news-latestnewsdetail .news-thumb:hover .img-cover { transform: scale(1.03); }
.p-news-latestnewsdetail .news-meta {
	margin-top: 1rem; border-bottom: 3px solid var(--color-border-deep); padding-bottom: .75rem;
	display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.p-news-latestnewsdetail .news-date { color: var(--color-black); font-size: .95rem; }
.p-news-latestnewsdetail .news-title {
	margin: .75rem 0 0;
	font-weight: 800;
	line-height: 1.35;
	font-size: 1.35rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--greenthree);
}
.p-news-latestnewsdetail .news-title a { color: var(--greenthree); text-decoration: none; }
.p-news-latestnewsdetail .news-title a:hover { text-decoration: underline; }
.p-news-latestnewsdetail .prose :is(h2,h3) { margin-top: 1.5rem; margin-bottom: .75rem; }
.p-news-latestnewsdetail .prose p { line-height: 1.85; margin-bottom: 1rem; }
.p-news-latestnewsdetail .prose img { max-width: 100%; border-radius: .5rem; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.p-news-latestnewsdetail .shadow-sm2 { box-shadow: 0 .125rem .25rem 4px #78787833 !important; }
.p-news-latestnewsdetail .badge.text-bg-coffee:hover {
	background-color: var(--color-coffee-700) !important; border-color: var(--color-coffee-700) !important; color: var(--color-white) !important;
	transform: translateY(-1px); box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
}
.p-news-latestnewsdetail .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1; display: inline-flex; align-items: center;
}
.p-news-latestnewsdetail .news-tag.is-solid { background: var(--earth-brown); color: var(--color-white); border-color: var(--earth-brown); }
.p-news-latestnewsdetail .news-tag.is-dot::before {
	content: ''; width: .5em; height: .5em; border-radius: 50%; background: var(--tag-color);
	display: inline-block; margin-right: .4em;
}

/* =====================
   ContactInformation/ContactInformation page styles
   Scoped under .p-contactinformation-contactinformation
===================== */
.p-contactinformation-contactinformation .hero-image { position: relative; }
.p-contactinformation-contactinformation .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-contactinformation-contactinformation .hero-text { position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem; }
@media (max-width: 991.98px) { .p-contactinformation-contactinformation .hero-img { aspect-ratio: 16/9; } }
@media (max-width: 575.98px) {
.p-contactinformation-contactinformation .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-contactinformation-contactinformation .hero-text { padding: .5rem; }
}
.p-contactinformation-contactinformation .container-xxl { max-width: 1440px; }
.p-contactinformation-contactinformation .section-eyebrow { letter-spacing: .25em; text-transform: uppercase; font-size: .75rem; }
.p-contactinformation-contactinformation .contact-form-wrapper {
	background: linear-gradient(135deg, rgba(255,255,255,.95), #fff); border: 0; padding: clamp(1.75rem,3vw,2.75rem);
}
.p-contactinformation-contactinformation .contact-form__heading { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.p-contactinformation-contactinformation .contact-form__heading-text { flex: 1 1 auto; }
.p-contactinformation-contactinformation .contact-form__heading-media { flex: 0 0 auto; }
.p-contactinformation-contactinformation .contact-form__image { display: block; width: 100%; max-width: 230px; height: auto; object-fit: contain; }
@media (max-width: 991.98px) {
	.p-contactinformation-contactinformation .contact-form__heading { gap: 1.25rem; }
	.p-contactinformation-contactinformation .contact-form__image { max-width: 180px; }
	.p-contactinformation-contactinformation .contact-form__heading-text .h3 { font-size: 1.375rem; line-height: 1.35; }
	.p-contactinformation-contactinformation .contact-form__heading-text .text-muted { font-size: .95rem; }
}
@media (max-width: 575.98px) {
	.p-contactinformation-contactinformation .contact-form__heading { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
	.p-contactinformation-contactinformation .contact-form__image { max-width: 140px; }
	.p-contactinformation-contactinformation .contact-form__heading-text .section-eyebrow { letter-spacing: .2em; font-size: .7rem; }
	.p-contactinformation-contactinformation .contact-form__heading-text .h3 { font-size: 1.25rem; line-height: 1.35; margin-top: .5rem; }
	.p-contactinformation-contactinformation .contact-form__heading-text .text-muted { font-size: .95rem; }
}
.p-contactinformation-contactinformation .contact-form__body .form-label { font-weight: 600; color: #2a3d2a; }
.p-contactinformation-contactinformation .contact-form__body .form-control {
	border: 1px solid #dee2e6; border-radius: 1rem; padding: .9rem 1.1rem; background: #fff; transition: all .2s;
}
.p-contactinformation-contactinformation .contact-form__body .form-control:focus { border-color: var(--greenthree); background: var(--color-white); box-shadow: 0 0 0 .2rem color-mix(in srgb, var(--greenthree) 15%, transparent); }
.p-contactinformation-contactinformation .contact-form-wrapper .form-select:focus { border-color: var(--greenthree); box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--greenthree) 15%, transparent); }
.p-contactinformation-contactinformation .btn-success { background: var(--greenthree); border: 0; padding-inline: 2.25rem; }
.p-contactinformation-contactinformation .btn-success:hover { background: var(--greentwo); }
.p-contactinformation-contactinformation .contact-form__heading-media img { transition: transform 0.3s ease, opacity 0.3s ease; }
.p-contactinformation-contactinformation .contact-form__heading-media a:hover img { transform: scale(1.05); opacity: 0.9; }
.p-contactinformation-contactinformation .cards-slider {
	margin-top: clamp(2rem, 4vw, 4rem) !important;
	padding: .75rem 0 1.75rem;
	padding-inline: 3.25rem;
	overflow: hidden;
}
.p-contactinformation-contactinformation .contact-info {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	padding: 0 !important;
	border: 1px solid rgba(18, 102, 63, .14);
	border-radius: 16px !important;
	background:
		linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,247,.98)),
		repeating-linear-gradient(135deg, rgba(25,135,84,.035) 0 1px, transparent 1px 16px);
	box-shadow: 0 18px 42px rgba(28, 54, 43, .11) !important;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.p-contactinformation-contactinformation .contact-info:hover {
	border-color: rgba(18, 102, 63, .28);
	box-shadow: 0 24px 54px rgba(28, 54, 43, .15) !important;
	transform: translateY(-3px);
}
.p-contactinformation-contactinformation .contact-info__header {
	padding: 1.35rem 1.45rem 1rem;
	background: linear-gradient(135deg, rgba(25,135,84,.1), rgba(255,255,255,0));
}
.p-contactinformation-contactinformation .contact-info__header .section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	color: var(--earth-brown) !important;
	font-size: .72rem;
	letter-spacing: .18em;
}
.p-contactinformation-contactinformation .contact-info__header .section-eyebrow::before {
	content: "";
	width: .5rem;
	height: .5rem;
	border-radius: 999px;
	background: var(--earth-brown);
}
.p-contactinformation-contactinformation .contact-info__header h3 {
	margin-bottom: 0;
	color: #163d2b !important;
	font-size: 1.28rem;
	line-height: 1.35;
}
.p-contactinformation-contactinformation .contact-info__sep {
	width: calc(100% - 2.9rem);
	height: 1px;
	margin: 0 auto !important;
	border: 0;
	background: linear-gradient(90deg, rgba(18, 102, 63, .22), rgba(18, 102, 63, .04));
	opacity: 1;
}
.p-contactinformation-contactinformation .contact-info__body {
	flex: 1 1 auto;
	padding: 1.25rem 1.45rem 1.55rem;
	color: #52635b;
	font-size: 1rem;
	line-height: 1.75;
}
.p-contactinformation-contactinformation .contact-info__body p {
	margin-bottom: .95rem;
}
.p-contactinformation-contactinformation .contact-info__body p:last-child {
	margin-bottom: 0;
}
.p-contactinformation-contactinformation .contact-info__body iframe {
	display: block;
	width: 100% !important;
	height: clamp(240px, 28vw, 320px) !important;
	border: 0 !important;
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(28, 54, 43, .12);
}
.p-contactinformation-contactinformation .contact-info__body a {
	color: var(--greentwo);
	font-weight: 800;
	overflow-wrap: anywhere;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}
.p-contactinformation-contactinformation .contact-info__body a:hover,
.p-contactinformation-contactinformation .contact-info__body a:focus {
	color: var(--earth-brown);
}
.p-contactinformation-contactinformation .contact-info__body ul {
	display: grid;
	gap: .6rem;
	margin: 1rem 0 .45rem;
	padding: 0;
	list-style: none;
}
.p-contactinformation-contactinformation .contact-info__body li {
	position: relative;
	padding-left: 1.35rem;
	color: #173d2c;
	font-weight: 800;
}
.p-contactinformation-contactinformation .contact-info__body li::before {
	content: "";
	position: absolute;
	top: .73em;
	left: .15rem;
	width: .55rem;
	height: .55rem;
	border-radius: 999px;
	background: var(--earth-brown);
	transform: translateY(-50%);
}
.p-contactinformation-contactinformation .contact-info__body li span,
.p-contactinformation-contactinformation .contact-info__body li strong {
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
}
.p-contactinformation-contactinformation .contact-info__body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}
.p-contactinformation-contactinformation .contact-info__body .text-center img.w-50 {
	width: min(220px, 72%) !important;
	padding: .75rem;
	background: #fff;
	border: 1px solid rgba(18, 102, 63, .14);
	box-shadow: 0 12px 30px rgba(28, 54, 43, .12);
}
.p-contactinformation-contactinformation .contact-info__body .row {
	margin-right: 0;
	margin-left: 0;
}
.p-contactinformation-contactinformation .contact-info__body .row + .row {
	margin-top: .85rem;
}
.p-contactinformation-contactinformation .contact-info__body .col-md-12 {
	padding: 1rem !important;
	border: 1px solid rgba(18, 102, 63, .12);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(28, 54, 43, .08);
}
.p-contactinformation-contactinformation .contact-info__body .col-md-12 img {
	width: auto !important;
	max-width: min(100%, 260px);
	max-height: 94px;
	object-fit: contain;
}
.p-contactinformation-contactinformation .info-line { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.p-contactinformation-contactinformation .info-line i { font-size: 1.1rem; }
.p-contactinformation-contactinformation .schedule-list li { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px dashed rgba(0,0,0,.08); }
.p-contactinformation-contactinformation .schedule-list li:last-child { border-bottom: none; }
.p-contactinformation-contactinformation .shadow-smtwo { box-shadow: none !important; }
.p-contactinformation-contactinformation .slider-track {
	--gap: 1.5rem;
	gap: var(--gap) !important;
	padding-top: 1.25rem !important;
	padding-right: 0 !important;
	padding-bottom: 1.75rem !important;
	padding-left: 0 !important;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.p-contactinformation-contactinformation .slider-track::-webkit-scrollbar { display: none; }
.p-contactinformation-contactinformation .slider-item { flex: 0 0 calc((100% - 2*var(--gap)) / 3); }
@media (max-width: 991.98px) { .p-contactinformation-contactinformation .slider-item { flex: 0 0 calc((100% - var(--gap)) / 2); } }
@media (max-width: 575.98px) { .p-contactinformation-contactinformation .slider-item { flex: 0 0 100%; } }
.p-contactinformation-contactinformation .slider-arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(18, 102, 63, .18) !important;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: var(--greentwo);
	backdrop-filter: blur(6px);
	box-shadow: 0 12px 28px rgba(28, 54, 43, .12) !important;
}
.p-contactinformation-contactinformation .slider-arrow:hover:not(:disabled),
.p-contactinformation-contactinformation .slider-arrow:focus:not(:disabled) {
	background: var(--greentwo);
	color: #fff;
}
.p-contactinformation-contactinformation .slider-arrow:disabled { opacity: .35; cursor: not-allowed; }
.p-contactinformation-contactinformation .slider-fade { display: none; }
.p-contactinformation-contactinformation .slider-fade-left { left: 0; background: linear-gradient(90deg, rgba(248,251,247,1), rgba(248,251,247,0)); }
.p-contactinformation-contactinformation .slider-fade-right { right: 0; background: linear-gradient(270deg, rgba(248,251,247,1), rgba(248,251,247,0)); }
@media (max-width: 575.98px) {
	.p-contactinformation-contactinformation .cards-slider {
		padding-inline: 0;
	}
	.p-contactinformation-contactinformation .slider-track {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}
	.p-contactinformation-contactinformation .slider-item {
		flex-basis: calc(100% - 3rem);
	}
	.p-contactinformation-contactinformation .contact-info__header {
		padding: 1.15rem 1.2rem .9rem;
	}
	.p-contactinformation-contactinformation .contact-info__body {
		padding: 1.1rem 1.2rem 1.3rem;
	}
	.p-contactinformation-contactinformation .contact-info__body iframe {
		height: 260px !important;
	}
}

/* =====================
   Questions/Questions page styles
   Scoped under .p-questions-questions
===================== */
.p-questions-questions .hero-image { position: relative; }
.p-questions-questions .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-questions-questions .hero-text { position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem; }
@media (max-width: 991.98px) { .p-questions-questions .hero-img { aspect-ratio: 16/9; } }
@media (max-width: 575.98px) {
	.p-questions-questions .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: #000; }
	.p-questions-questions .hero-text { padding: .5rem; }
}
.p-questions-questions .accordion-item { border: 1px solid #dee2e6; border-radius: 0.5rem !important; overflow: hidden; }
.p-questions-questions .accordion-button { background-color: var(--soft-cream); border: none; font-weight: 600; color: var(--greenthree); padding: 1.25rem; }
.p-questions-questions .accordion-button:not(.collapsed) { background-color: var(--soft-cream); color: var(--greenthree); box-shadow: none; }
.p-questions-questions .accordion-button:focus { box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--greenthree) 25%, transparent); }
.p-questions-questions .accordion-body { background-color: var(--color-white); padding: 1.5rem; }
.p-questions-questions .category-btn { transition: all 0.3s ease; white-space: nowrap; }
.p-questions-questions .category-btn.active,
.p-questions-questions .category-btn:hover { background-color: var(--greenthree); color: var(--color-white); border-color: var(--greenthree); }
.p-questions-questions .faq-item { transition: all 0.3s ease; }
.p-questions-questions .faq-item.hidden { display: none; }
.p-questions-questions .bg-gradient { background: linear-gradient(135deg, var(--greenthree) 0%, var(--greenthree-light) 100%); }
.p-questions-questions .form-control:focus { border-color: var(--greenthree); box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--greenthree) 25%, transparent); }
.p-questions-questions .btn-success { background-color: var(--greenthree); border-color: var(--greenthree); }
.p-questions-questions .btn-success:hover { background-color: var(--greenthree); border-color: var(--greenthree); }
.p-questions-questions .btn-outline-success { color: var(--greenthree); border-color: var(--greenthree); }
.p-questions-questions .btn-outline-success:hover { background-color: var(--greenthree); border-color: var(--greenthree); color: var(--color-white); }
.p-questions-questions .cat-track { scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; white-space: nowrap; }
.p-questions-questions .cat-track::-webkit-scrollbar { display: none; }
.p-questions-questions .cat-arrow { width: 40px; height: 40px; border-radius: 999px; backdrop-filter: blur(6px); }
.p-questions-questions .cat-arrow:disabled { opacity: .35; cursor: not-allowed; }
.p-questions-questions .cat-fade { position: absolute; top: 0; bottom: 0; width: 40px; z-index: 1; pointer-events: none; }
.p-questions-questions .cat-fade-left { left: 0; background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0)); }
.p-questions-questions .cat-fade-right { right: 0; background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0)); }
.p-questions-questions .page-hidden { display: none !important; }
.p-questions-questions #faqPagination .page-link { min-width: 36px; text-align: center; }

/* =====================
   News/News page styles
   Scoped under .p-news-news
===================== */
.p-news-news .hero-image { position: relative; }
.p-news-news .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-news-news .hero-text { position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem; }
@media (max-width: 991.98px) { .p-news-news .hero-img { aspect-ratio: 16/9; } }
@media (max-width: 575.98px) {
	.p-news-news .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-news-news .hero-text { padding: .5rem; }
}
.p-news-news .container-xxl { max-width: 1440px; }
.p-news-news .news-filters { display: flex; flex-direction: column; align-items: stretch; gap: 1.5rem; }
.p-news-news .news-filter-pills { width: 100%; display: flex; justify-content: center; }
.p-news-news .category-scroll-container { min-height: 2.5rem; gap: .75rem; }
.p-news-news .category-scroll-wrapper {
	overflow: hidden; --category-pill-width: 9rem;
	max-width: min(100%, var(--category-scroll-max, calc(var(--visible-category-count, 5)*var(--category-pill-width))));
}
.p-news-news .category-scroll { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; gap: .75rem; }
.p-news-news .category-scroll::-webkit-scrollbar { display: none; }
.p-news-news .category-scroll-btn { width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; }
.p-news-news .category-scroll-btn:disabled, .p-news-news .category-scroll-btn[aria-disabled="true"] { opacity: .4; cursor: not-allowed; }
.p-news-news .news-search { width: 100%; max-width: 320px; position: relative; }
.p-news-news .news-search-input { border-radius: 0 .75rem .75rem 0; border: 1px solid var(--greenthree); transition: all .3s ease; }
.p-news-news .news-search .input-group-text { border-radius: .75rem 0 0 .75rem; padding-inline: 1rem; font-size: 1rem; }
.p-news-news .news-search-input::placeholder { color: #8b978b; font-weight: 400; letter-spacing: .02em; }
.p-news-news .news-search-input:hover { border-color: color-mix(in srgb, var(--greenthree) 60%, transparent); }
.p-news-news .news-search-input:focus { border-color: var(--greenthree); box-shadow: 0 0 0 .25rem rgba(40,167,69,.25); }
.p-news-news .news-filter-btn { border: 1px solid var(--greenthree); background: var(--color-white); color: var(--greenthree); padding: .45rem 1.4rem; border-radius: 999px; font-weight: 600; letter-spacing: .02em; transition: all .2s ease; white-space: nowrap; }
.p-news-news .news-filter-btn:hover, .p-news-news .news-filter-btn:focus { border-color: var(--greenthree); color: var(--color-white); box-shadow: 0 6px 18px rgba(45,90,43,.12); background-color:var(--greenthree); }
.p-news-news .news-filter-btn.active, .p-news-news .news-filter-btn[aria-pressed="true"] { background-color: var(--greenthree); border-color: var(--greenthree); color: var(--color-white); box-shadow: 0 10px 24px rgba(45,90,43,.2); }
.p-news-news .news-tag {
	--tag-color: var(--earth-brown);
	--tag-bg: color-mix(in srgb, var(--tag-color) 12%, white);
	--tag-border: color-mix(in srgb, var(--tag-color) 35%, white);
	--tag-text: color-mix(in srgb, var(--tag-color) 90%, black);
	background: var(--tag-bg); border: 1px solid var(--tag-border); color: var(--tag-text);
	font-size: .85rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; line-height: 1; display: inline-flex; align-items: center;
}
.p-news-news .news-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(18, 100, 60, .5);
	border-radius: 1rem;
	/* padding: 1.25rem 1.5rem 1rem; */
	background-color: #fff;
	gap: 1rem;
}
.p-news-news .news-item { display: flex; justify-content: center; }
	.p-news-news .news-item .news-card {
		width: 100%;
		/* max-width: 280px; */
		margin: 0 auto;
		height: 400px;
	}
.p-news-news .news-item .news-date { font-size: .95rem; }
.p-news-news .news-thumb {
	border-radius: .5rem .5rem 0 0;
	overflow: hidden;
	display: block;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
	.p-news-news .news-thumb .img-cover {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform .25s ease;
	}
.p-news-news .news-thumb:hover .img-cover { transform: scale(1.03); }
.p-news-news .news-meta {
	margin-top: 1rem;
	border-bottom: 2px solid #2d5a2b33;
	padding-bottom: .75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}
.p-news-news .news-meta .news-tag { margin-right: auto; }
.p-news-news .news-meta .news-date { margin-left: auto; text-align: right; }
.p-news-news .news-date { color: var(--color-black); font-size: .95rem; }
.p-news-news .news-title {
	margin: .75rem 0 0;
	font-weight: 800;
	line-height: 1.35;
	font-size: 1.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--greenthree);
}
.p-news-news .news-title a { color: var(--greenthree); text-decoration: none; }
.p-news-news .news-title a:hover { text-decoration: underline; }
.p-news-news .news-section .row { --bs-gutter-x: 2.5rem; --bs-gutter-y: 2.5rem; }
.p-news-news .news-thumb img { backface-visibility: hidden; -webkit-font-smoothing: antialiased; }

/* =====================
   AboutUsOne/AboutUsOne page styles
   Scoped under .p-aboutusone-aboutusone
===================== */
.p-aboutusone-aboutusone .hero-image { position: relative; }
.p-aboutusone-aboutusone .hero-img { max-height: 55vh; aspect-ratio: 21/9; }
.p-aboutusone-aboutusone .hero-text { position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 2px 6px rgba(0,0,0,.5); padding: 0 1rem; }
@media (max-width: 991.98px) { .p-aboutusone-aboutusone .hero-img { aspect-ratio: 16/9; } }
@media (max-width: 575.98px) {
	.p-aboutusone-aboutusone .hero-img { aspect-ratio: auto; max-height: 55vh; object-fit: contain; background: var(--color-black); }
	.p-aboutusone-aboutusone .hero-text { padding: .5rem; }
}
.p-aboutusone-aboutusone .about-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
	border-radius: 15px;
}
.p-aboutusone-aboutusone .about-content p { margin-bottom: 1rem; }
.p-aboutusone-aboutusone .about-content img { max-width: 100%; height: auto; }
@media (max-width: 991.98px) {
	.p-aboutusone-aboutusone .about-img { aspect-ratio: 16 / 9; object-fit: cover; }
	.p-aboutusone-aboutusone .about-content { text-align: left; }
	.p-aboutusone-aboutusone .about-block { margin-bottom: 2rem !important; }
}
@media (max-width: 575.98px) {
	.p-aboutusone-aboutusone .about-img {
		aspect-ratio: auto; max-height: 45vh; object-fit: contain; background: #f8f9fa;
		border-radius: .75rem; box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	}
	.p-aboutusone-aboutusone .about-content { text-align: center; }
	.p-aboutusone-aboutusone .about-content p { margin-bottom: .875rem; line-height: 1.7; }
	.p-aboutusone-aboutusone .about-block { margin-bottom: 1.5rem !important; }
}
