	.sf-rail-section {
		padding: 100px 0 !important;
		overflow: hidden !important;
		max-width: 100vw !important;
		-webkit-font-smoothing: antialiased;
	}
	.sf-rail-section-white  { background: #fff !important; }
	.sf-rail-section-light  { background: #f5f5f7 !important; }

	.sf-rail-header {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 24px 48px;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 40px;
	}
	.sf-rail-header-text { flex: 1; min-width: 0; }
	.sf-rail-eyebrow {
		font-size: 13px;
		font-weight: 500;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #86868b;
		margin: 0 0 12px;
	}
	.sf-rail-title {
		font-family: 'SF Pro Display', 'Inter', -apple-system, sans-serif;
		font-size: clamp(32px, 4vw, 48px);
		font-weight: 600;
		color: #1d1d1f;
		letter-spacing: -0.025em;
		line-height: 1.08;
		margin: 0 0 12px;
	}
	.sf-rail-subtitle {
		font-size: 18px;
		font-weight: 400;
		color: #6e6e73;
		line-height: 1.5;
		max-width: 540px;
		margin: 0;
	}

	.sf-rail-arrows {
		display: flex;
		gap: 10px;
		flex-shrink: 0;
		padding-bottom: 4px;
	}
	.sf-rail-arrow {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		border: 1px solid #e8e8ed !important;
		background: #fff !important;
		color: #1d1d1f !important;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: transform 0.2s ease, background 0.2s ease;
		outline: none !important;
		-webkit-appearance: none;
		appearance: none;
		padding: 0;
	}
	.sf-rail-arrow:hover {
		transform: scale(1.06);
		background: #f5f5f7 !important;
	}
	.sf-rail-arrow svg {
		width: 14px;
		height: 14px;
		stroke: #1d1d1f !important;
		stroke-width: 2;
		fill: none !important;
		stroke-linecap: round;
		stroke-linejoin: round;
	}

	.sf-rail-track {
		display: flex;
		gap: 24px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding: 8px max(24px, calc((100vw - 1200px) / 2 + 24px)) 8px;
		cursor: grab;
	}
	.sf-rail-track:active { cursor: grabbing; }
	.sf-rail-track::-webkit-scrollbar { display: none; }

	.sf-rail-card {
		flex: 0 0 420px;
		scroll-snap-align: start;
		border-radius: 20px;
		overflow: hidden;
		background: #fff;
		border: 1px solid rgba(0,0,0,0.06);
		transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		            box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		user-select: none;
		-webkit-user-select: none;
	}
	.sf-rail-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
	}

	.sf-rail-card-img-wrap {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 10;
		overflow: hidden;
	}
	.sf-rail-card-img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.sf-rail-card-img-overlay {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.35);
		pointer-events: none;
	}

	.sf-rail-card-body {
		padding: 22px 26px 26px;
	}
	.sf-rail-card-name {
		font-size: 19px;
		font-weight: 600;
		color: #1d1d1f;
		margin: 0 0 6px;
		line-height: 1.25;
		letter-spacing: -0.01em;
	}
	.sf-rail-card-desc {
		font-size: 15px;
		font-weight: 400;
		color: #6e6e73;
		line-height: 1.5;
		margin: 0 0 14px;
	}
	.sf-rail-card-link {
		font-size: 14px;
		font-weight: 500;
		color: #0066cc;
		text-decoration: none;
		transition: color 0.2s ease;
	}
	.sf-rail-card-link:hover { color: #0077ed; }

	.sf-rail-footer {
		max-width: 1200px;
		margin: 0 auto;
		padding: 24px 24px 0;
		display: flex;
		justify-content: flex-end;
	}

	@media (max-width: 1199px) {
		.sf-rail-card { flex: 0 0 360px; }
	}
	@media (max-width: 767px) {
		.sf-rail-section { padding: 64px 0 !important; }
		.sf-rail-header {
			padding: 0 20px 36px;
			flex-direction: column;
			align-items: flex-start;
			gap: 20px;
		}
		.sf-rail-track { gap: 16px; padding: 4px 20px; }
		.sf-rail-card { flex: 0 0 calc(100vw - 56px); }
		.sf-rail-title { font-size: 30px; }
	}