/* Каждый слайд — позиционированный родитель */
.banner-item {
	position: relative;
}

/* Позиционирование текста баннера */
.banner-content {
	position: absolute;
	top: 60%; /* позиция по вертикали — ближе к центру */
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%); /* точное центрирование */
	z-index: 2;
}

.banner-text-wrapper {
	max-width: 800px;
	margin: 0 auto;
	color: #fff;
}

.banner-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 15px 0;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.banner-description {
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Каждый слайд — позиционированный родитель */
.banner-item {
	position: relative;
}

.banner-content {
	position: absolute;
	top: 60%;
	left: 0;
	right: 0;
	text-align: center;
	transform: translateY(-50%);
	z-index: 2;
}

.banner-text-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

/* === ЗАГОЛОВОК === */
.banner-title {
	font-family: 'Montserrat', Arial, sans-serif; /* Шрифт */
	font-size: 56px;                              /* Размер */
	color: #FFFFFF;                               /* Цвет */
	font-weight: 700;                             /* Жирность (400-900) */
	line-height: 1.2;
	margin: 0 0 15px 0;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);      /* Тень для читаемости */
}

/* === ПОДЗАГОЛОВОК === */
.banner-description {
	font-family: 'Open Sans', sans-serif;         /* Шрифт */
	font-size: 22px;                              /* Размер */
	color: #F5F5F5;                               /* Цвет */
	font-weight: 400;                             /* Жирность */
	line-height: 1.5;
	margin: 0;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}