/* Shared layout utilities (used on home, custom tour, policy, etc.) */

.home-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.home-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.home-section-head {
	text-align: center;
	margin-bottom: 38px;
}

.home-section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.home-section-kicker {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1565d8;
}

.home-featured-section .home-section-head-row {
    text-align: left !important;
}

.home-featured-section .home-section-kicker {
    margin-left: 0 !important;
    display: block;
}

@media (max-width: 1024px) {
    .home-featured-section .home-section-head-row {
        text-align: left !important;
        align-items: flex-start !important;
    }
}

.home-section-title {
	margin: 0;
	font-size: 38px;
	line-height: 1.25;
	font-weight: 800;
	color: #111827;
}

.home-more-link {
	font-size: 15px;
	font-weight: 700;
	color: #1565d8;
	text-decoration: none;
	white-space: nowrap;
}

.home-empty-box {
	padding: 40px;
	border: 1px dashed #d1d5db;
	border-radius: 20px;
	background: #fff;
	text-align: center;
	color: #6b7280;
}

.home-why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.home-why-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 22px;
	padding: 28px 24px;
}

.home-why-number {
	font-size: 14px;
	font-weight: 800;
	color: #1565d8;
	margin-bottom: 14px;
}

.home-why-card h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
	color: #111827;
}

.home-why-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #6b7280;
}

.home-trust-section {
	background: #fff;
}

.home-trust-box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.home-trust-item {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 22px;
	padding: 28px 24px;
}

.home-trust-item h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 800;
	color: #111827;
}

.home-trust-item p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #6b7280;
}

@media (max-width: 1200px) {
	.home-trust-box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.home-section {
		padding: 60px 0;
	}

	.home-section-head-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.home-container {
		padding: 0 14px;
	}

	.home-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

	.home-section-title {
		font-size: 30px;
	}

	.home-why-grid,
	.home-trust-box {
		grid-template-columns: 1fr;
	}

	.home-why-card h3,
	.home-trust-item h3 {
		font-size: 22px;
	}
}
