/**
 * Thaicon Theme — Блок: О бренде Thaicon (новая структура)
 *
 * По оригиналу (скрин 2):
 *   - Слева: eyebrow + title + text + карточка с иконками
 *   - Справа: картинка с радиусом
 *
 * @package Thaicon
 */

.block-about-brand {
	background: var(--t-white);
	padding: 5rem 0;
}

.block-about-brand__container {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;                             /* 48px */
	align-items: stretch;
}


/* ============================================================
   ЛЕВАЯ КОЛОНКА
   ============================================================ */

.block-about-brand__left {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;                           /* 24px */
	justify-content: flex-start;
}

.block-about-brand__eyebrow {
	font-size: 1.65rem;                  /* 13px */
	font-weight: 700;
	line-height: 1.4;
	color: var(--t-blue-medium);
	text-transform: uppercase;
}

.block-about-brand__title {
	font-size: 2.25rem;                    /* 36px */
	font-weight: 700;
	line-height: 1.15;
	color: var(--t-dark);
	text-transform: uppercase;
	margin-bottom: 6rem;
}

.block-about-brand__body {
	font-size: 1rem;                       /* 16px */
	line-height: 1.5;
	color: var(--t-dark);
	max-width: 38rem;
}

.block-about-brand__body p { margin-bottom: 1em; }
.block-about-brand__body p:last-child { margin-bottom: 0; }


/* ============================================================
   КАРТОЧКА С ПРЕИМУЩЕСТВАМИ
   ============================================================ */

.brand-features {
	background: var(--t-blue-pale);
	border-radius: 1.25rem;                /* 20px */
	padding: 2rem;                         /* 32px */
	margin-top: 0.5rem;
}

.brand-features__title {
	font-size: 1.125rem;                   /* 18px */
	font-weight: 700;
	line-height: 1.5;
	color: var(--t-dark);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.brand-features__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1.5rem;                      /* row gap / col gap */
}

.brand-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;                          /* 12px */
}

.brand-feature__icon {
	flex-shrink: 0;
	width: 2.25rem;                        /* 36px */
	height: 2.25rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-feature__icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.brand-feature__label {
	font-size: 0.95rem;                  /* 15px */
	font-weight: 500;
	color: var(--t-dark);
	line-height: 1.3;
}


/* ============================================================
   ПРАВАЯ КОЛОНКА — КАРТИНКА
   ============================================================ */

.block-about-brand__image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 25rem;                     /* 400px */
	border-radius: 1.25rem;                /* 20px */
	overflow: hidden;
	background: var(--t-blue-pale);
}

.block-about-brand__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ============================================================
   АДАПТИВ
   ============================================================ */

@media (max-width: 959px) {
	.block-about-brand__container {
		gap: 1rem;
	}
	.block-about-brand__title { font-size: 1.875rem; }
	.brand-features__title { font-size: 1rem; }
}

@media (max-width: 639px) {
	.block-about-brand { padding: 40px 0; }
	.block-about-brand__container {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 0 15px;
	}
	.block-about-brand__eyebrow {
		font-size: 11px;
	}
	.block-about-brand__title { font-size: 22px; }
	.block-about-brand__body { font-size: 14px; }

	.brand-features {
		padding: 20px;
		border-radius: 16px;
	}
	.brand-features__title {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.brand-features__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.brand-feature__icon {
		width: 32px;
		height: 32px;
	}
	.brand-feature__label { font-size: 13px; }

	.block-about-brand__image {
		min-height: 280px;
		border-radius: 16px;
	}
}
