.dft-a1 {
	display: grid;
	grid-template-columns: minmax(320px, 460px) 1fr;
	gap: 22px;
	align-items: stretch;
	max-width: 1200px;
	margin: clamp(16px, 4vw, 34px) auto;
}

.dft-a1__col {
	min-width: 0;
}

.dft-a1__col--question {
	display: flex;
}

.dft-a1__question-wrap {
	width: 100%;
	background: #f6f8f5;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 24px;
	padding: clamp(20px, 3vw, 28px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.dft-a1__question-title {
	margin: 0 0 10px 0;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.08;
	font-weight: 800;
	color: #1f2a1f;
}

.dft-a1__question-subtitle {
	margin: 0 0 18px 0;
	font-size: clamp(14px, 1.15vw, 18px);
	line-height: 1.5;
	color: #5d685d;
}

.dft-a1__answers-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.dft-a1__answer-link {
	display: block;
	padding: 12px 14px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: #1f2a1f;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.2;
	transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.dft-a1__answer-link:hover {
	background: #edf3eb;
	border-color: rgba(0, 0, 0, 0.16);
	transform: translateY(-1px);
}

.dft-a1__col--mosaic {
	display: flex;
}

.dft-a1__cells {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 66px;
	gap: 12px;
}

.dft-a1__cell {
	display: block;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	position: relative;
}

.dft-a1__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity .28s ease, transform .45s ease;
}

.dft-a1__cell:hover img {
	transform: scale(1.03);
}

.dft-a1__cell img.is-fading {
	opacity: .28;
}

/* composición editorial del mosaico */
.dft-a1__cell--1 { grid-column: span 3; grid-row: span 3; }
.dft-a1__cell--2 { grid-column: span 3; grid-row: span 2; }
.dft-a1__cell--3 { grid-column: span 2; grid-row: span 3; }
.dft-a1__cell--4 { grid-column: span 2; grid-row: span 2; }
.dft-a1__cell--5 { grid-column: span 2; grid-row: span 2; }
.dft-a1__cell--6 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1080px) {
	.dft-a1 {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.dft-a1__question-wrap {
		padding: 22px;
	}

	.dft-a1__cells {
		grid-auto-rows: 58px;
	}
}

@media (max-width: 680px) {
	.dft-a1__question-title {
		font-size: 30px;
	}

	.dft-a1__cells {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 72px;
		gap: 10px;
	}

	.dft-a1__cell--1 { grid-column: span 2; grid-row: span 2; }
	.dft-a1__cell--2 { grid-column: span 1; grid-row: span 2; }
	.dft-a1__cell--3 { grid-column: span 1; grid-row: span 2; }
	.dft-a1__cell--4 { grid-column: span 1; grid-row: span 1; }
	.dft-a1__cell--5 { grid-column: span 1; grid-row: span 1; }
	.dft-a1__cell--6 { grid-column: span 1; grid-row: span 1; }
}