.sailing-guidance-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.sg-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 768px) {
	.sg-container {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}
}

.sg-content-col {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.sg-eyebrow {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.sg-eyebrow:after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
}

.sg-heading {
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 24px;
	font-weight: 600;
}

@media (min-width: 768px) {
	.sg-heading {
		font-size: 40px;
	}
}

.sg-intro {
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 40px;
}

.sg-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.sg-actions {
		flex-direction: row;
		align-items: center;
		gap: 24px;
	}
}

.sg-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 4px;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.sg-primary-btn:hover {
	opacity: 0.9;
}

.sg-secondary-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}

.sg-secondary-btn:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

.sg-secondary-btn:hover:after {
	transform: scaleX(1);
	transform-origin: left;
}

.sg-cards-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sg-card {
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.sg-card-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 24px;
}

.sg-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

.sg-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.sg-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.sg-list-text {
	font-size: 15px;
	line-height: 1.5;
}

.sg-clarity-note {
	font-size: 14px;
	line-height: 1.6;
	font-style: italic;
	opacity: 0.8;
	padding-top: 16px;
	border-top: 1px solid rgba(0,0,0,0.1);
}
