/* =========================================
   Bento Box Section Layout
   ========================================= */

.bento-section {
	width: 80%;
	margin:auto;
	padding: 0px !important;
}

.bento-section h2{
	font-size: 24px;
    line-height: 32px;
}

.bento-section p{
	font-size: 16px;
    line-height: 22px;
}
.bento-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 80%;
	margin: 0 auto;
}

/* Card base styling */
.bento-card {
	background: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	padding: 40px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	display: flex;
	align-items: top;
}

.bento-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

/* Card A — hero card, full width */
.bento-card--hero {
	grid-column: 1 / span 2;
}

/* Cards B & C — sit side by side */
.bento-card--half {
	grid-column: span 1;
}

/* Card D — full width footer card */
.bento-card--wide {
	grid-column: 1 / span 2;
}

/* Remove the extra top padding used previously on stacked h2s,
   since each heading now lives in its own card */
.bento-card .section-title-home {
	padding-top: 0 !important;
}

/* Tighten up the centered content wrapper inside a card so it
   doesn't fight the card's own padding */
.bento-card .content-wrapper-centered {
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

/* Links inside card copy */
.bento-card .section-paragraph-home a {
	color: #1a1a1a;
	text-decoration: underline;
	text-decoration-color: #c9c9c9;
	text-underline-offset: 2px;
	transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.bento-card .section-paragraph-home a:hover {
	color: #000000;
	text-decoration-color: #1a1a1a;
}

/* =========================================
   City chip strip
   ========================================= */

.bento-city-strip {
	grid-column: 1 / span 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.bento-city-chip {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #f6f6f4;
	border: 1px solid #e9e9e9;
	border-radius: 6px;
	padding: 16px 10px;
	font-size: 14px;
	font-weight: 500;
	color: #2c2c2a;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bento-city-chip:hover {
	background: #eeeeeb;
	border-color: #d5d5d0;
	color: #000000;
}

/* =========================================
   Responsive behavior
   ========================================= */

/* Tablet: collapse the two-up cards, keep hero/wide full width */
@media (max-width: 900px) {

	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-card--hero,
	.bento-card--half,
	.bento-card--wide {
		grid-column: 1;
	}

	.bento-city-strip {
		grid-column: 1;
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Mobile: reduce card padding, shrink chip grid further */
@media (max-width: 600px) {

	.bento-card {
		padding: 28px 24px;
	}

	.bento-city-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.bento-city-chip {
		padding: 14px 8px;
		font-size: 13px;
	}
}

/* =========================================
   FAQ Bento Section Layout
   ========================================= */

.bento-faq-section .content-wrapper-centered {
	text-align: center;
	margin-bottom: 32px;
}

.bento-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1280px;
	margin: 0 auto;
}

/* Card base — the <details> element itself */
.bento-faq-card {
	grid-column: span 1;
	background: #ffffff;
	border: 1px solid #e9e9e9;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
	padding: 32px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bento-faq-card:hover {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transform: translateY(-1px);
}

/* First FAQ — full width */
.bento-faq-card--wide {
	grid-column: 1 / span 2;
}

/* Question / summary styling */
.bento-faq-question {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
}

.bento-faq-question::-webkit-details-marker {
	display: none;
}

/* Custom plus/minus indicator */
.bento-faq-question::after {
	content: "+";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #d5d5d0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	color: #1a1a1a;
	transition: transform 0.2s ease, background 0.2s ease;
}

.bento-faq-card[open] .bento-faq-question::after {
	content: "\2212";
	background: #f6f6f4;
}

/* Answer content */
.bento-faq-answer {
	padding-top: 16px;
}

.bento-faq-answer .section-paragraph-home {
	margin-top: 0;
}

.bento-faq-list {
	margin: 12px 0 0;
	padding-left: 20px;
}

.bento-faq-list li {
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
	margin-bottom: 8px;
}

.bento-faq-list li:last-child {
	margin-bottom: 0;
}

/* =========================================
   Responsive behavior
   ========================================= */

@media (max-width: 900px) {

	.bento-faq-grid {
		grid-template-columns: 1fr;
	}

	.bento-faq-card,
	.bento-faq-card--wide {
		grid-column: 1;
	}
}

@media (max-width: 600px) {

	.bento-faq-card {
		padding: 24px 20px;
	}

	.bento-faq-question {
		font-size: 18px;
	}
}
