/* =========================================
   Image Hover Effects — Getting Started Page
   ========================================= */

body #wpcontent {
	padding: 0;
	background: #f0f0f1;
}
body #wpbody-content {
	padding-bottom: 65px;
	float: left;
	width: 100%;
	overflow: visible;
}

.oxi-gs-wrap, 
.oxi-gs-cards-wrap {
	margin: 40px auto;
	padding: 0 20px 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	box-sizing: border-box;
}

.oxi-gs-wrap {
	max-width: 900px;
}

.oxi-gs-cards-wrap{
	max-width: 1170px;
}

/* Header */
.oxi-gs-header {
	text-align: center;
	margin-bottom: 36px;
}
.oxi-gs-header h1 {
	font-size: 28px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 10px;
	line-height: 1.3;
}
.oxi-gs-header p {
	font-size: 15px;
	color: #50575e;
	margin: 0;
}

/* Video */
.oxi-gs-video-wrap {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	padding: 24px;
	margin-bottom: 32px;
}
.oxi-gs-video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 6px;
}
.oxi-gs-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Cards Grid */
.oxi-gs-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

/* Single Card */
.oxi-gs-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
}

/* Icon */
.oxi-gs-card-icon {
	width: 48px;
	height: 48px;
	background: #e8514a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	flex-shrink: 0;
}
.oxi-gs-card-icon .dashicons {
	color: #fff;
	font-size: 22px;
	width: 22px;
	height: 22px;
	line-height: 1;
}

/* Card Text */
.oxi-gs-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: #1d2327;
	margin: 0 0 10px;
	line-height: 1.4;
}
.oxi-gs-card p {
	font-size: 14px;
	color: #50575e;
	line-height: 1.6;
	margin: 0 0 20px;
	flex: 1;
}

/* Button */
.oxi-gs-btn {
	display: inline-block;
	background: #e8514a;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	padding: 9px 20px;
	border-radius: 5px;
	transition: background 0.2s ease;
	line-height: 1;
}
.oxi-gs-btn:hover,
.oxi-gs-btn:focus {
	background: #c0392b;
	color: #fff;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 640px) {
	.oxi-gs-cards {
		grid-template-columns: 1fr;
	}
	.oxi-gs-header h1 {
		font-size: 22px;
	}
}
