/**
 * Landing Page - Tables Section Styles
 * Responsive 2x2 Table with Design System Alignment
 */
td {
    font-size: .9em !important;
    border-bottom: 1px solid var(--nv-text-color) !important;
}
.landing-tables {
	padding: 60px 20px;
	background: #ffffff;
	font-family: 'Arial', sans-serif;
}

.landing-tables-container {
	max-width: 1200px;
	margin: 0 auto;
}

.landing-tables-header {
	text-align: center;
	margin-bottom: 50px;
}

.landing-tables-header h2 {
	font-size: 2.5rem;
	color: #222222;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	margin: 0 0 15px;
	letter-spacing: -1px;
	line-height: 1.2;
}

.landing-tables-header p {
	color: #666;
	font-size: 1rem;
	margin: 0;
	line-height: 1.6;
}

/* Tables Grid */
.landing-tables-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px;
	margin-top: 40px;
}

/* Individual Table Styles */
.landing-table {
	border-collapse: collapse;
	width: 100%;
	border-top: 3px solid #b8956a;
	padding-top: 30px;
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.landing-table thead {
	background-color: #f9f9f9;
	border-bottom: 2px solid #b8956a;
}

.landing-table th {
	padding: 20px 15px;
	text-align: left;
	color: #222222;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.landing-table tbody tr {
	border-bottom: 1px solid #e8e8e8;
	transition: background-color 0.3s ease;
}

.landing-table tbody tr:hover {
	background-color: #fafafa;
}

.landing-table tbody tr:last-child {
	border-bottom: none;
}

.landing-table td {
	padding: 5px 15px;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Striped rows for better readability */
.landing-table tbody tr:nth-child(even) {
	background-color: #fafafa;
}

/* Responsive Design */
@media (max-width: 768px) {
	.landing-tables {
		padding: 40px 15px;
	}

	.landing-tables-header h2 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}

	.landing-tables-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.landing-table th {
		font-size: 0.95rem;
		padding: 15px 10px;
	}

	.landing-table td {
		font-size: 0.9rem;
		padding: 12px 10px;
	}
}

@media (max-width: 480px) {
	.landing-tables {
		padding: 30px 10px;
	}

	.landing-tables-header h2 {
		font-size: 1.5rem;
	}

	.landing-tables-header p {
		font-size: 0.9rem;
	}

	.landing-table {
		border-top: 2px solid #b8956a;
		padding-top: 20px;
	}

	.landing-table th {
		font-size: 0.85rem;
		padding: 12px 8px;
	}

	.landing-table td {
		font-size: 0.8rem;
		padding: 10px 8px;
	}

	.landing-tables-grid {
		gap: 20px;
	}
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
	.landing-tables {
		padding: 50px 20px;
	}

	.landing-tables-header h2 {
		font-size: 2rem;
	}

	.landing-table th {
		font-size: 1rem;
		padding: 18px 12px;
	}

	.landing-table td {
		padding: 5px 12px;
	}
}

/* LTR/RTL Support */
.landing-tables.rtl {
	direction: rtl;
}

.landing-tables.rtl .landing-table th,
.landing-tables.rtl .landing-table td {
	text-align: right;
}

.landing-tables.rtl .landing-tables-header {
	text-align: right;
}
