/* Контейнер со списком документов */
.t_docs__files {
	display: flex;
	flex-direction: column;
	gap: 16px; /* 15–20px по ТЗ, выбрано 16px */
}

/* Карточка документа */
.docs__item {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 16px 20px;
	background: #ffffff;
	border-radius: 12px;

	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.docs__item:hover {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
	transform: translateY(-2px);
}

/* Левая часть карточки */
.docs__header {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0; /* позволяет обрезку текста */
	flex: 1 1 auto;
}

/* Название документа (обрезка до 2 строк) */
.doc-name {
	color: #1f2937;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Кнопка скачивания справа */
.docs-download-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #F0FDF4; /* нежный зеленый фон */
	border: 1px solid rgba(52, 211, 153, 0.3);
	transition: background-color 0.2s ease, transform 0.2s ease;
	&:after{
		content:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 59 59' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_34_55)'%3E%3Cpath d='M29.4476 58.7033C45.3858 58.7033 58.3062 45.7228 58.3062 29.7105C58.3062 13.6983 45.3858 0.717773 29.4476 0.717773C13.5094 0.717773 0.588989 13.6983 0.588989 29.7105C0.588989 45.7228 13.5094 58.7033 29.4476 58.7033Z' fill='url(%23paint0_linear_34_55)'/%3E%3Cpath d='M28.8234 33.6524C28.8697 33.6897 28.9239 33.7081 28.9745 33.7363C29.0164 33.7598 29.0536 33.7878 29.099 33.8053C29.2185 33.8517 29.343 33.8801 29.4696 33.8801C29.5961 33.8801 29.7207 33.8516 29.8406 33.8052C29.8861 33.7876 29.9233 33.7593 29.9655 33.7356C30.0166 33.7071 30.0717 33.6881 30.1186 33.6503L35.2617 29.488C35.7053 29.1292 35.7738 28.4794 35.4149 28.0365C35.0571 27.5944 34.4059 27.5239 33.9633 27.8833L30.5018 30.6847V21.4111C30.5019 20.8411 30.0401 20.3789 29.4696 20.3789C28.899 20.3789 28.4374 20.8411 28.4374 21.4111V30.6941L24.9365 27.8813C24.4919 27.5239 23.8427 27.5955 23.4859 28.039C23.1291 28.4836 23.1996 29.1332 23.6442 29.49L28.8234 33.6524Z' fill='%23FFF8F8'/%3E%3Cpath d='M38.7507 31.7825C38.1801 31.7825 37.7185 32.2446 37.7185 32.8147V35.0238C37.7185 36.1009 36.8193 36.9774 35.7145 36.9774H23.1805C22.0756 36.9774 21.1764 36.1009 21.1764 35.0238V32.8147C21.1764 32.2446 20.7148 31.7825 20.1443 31.7825C19.5737 31.7825 19.1121 32.2446 19.1121 32.8147V35.0238C19.1119 37.2395 20.9376 39.042 23.1805 39.042H35.7145C37.9574 39.042 39.783 37.2395 39.783 35.0238V32.8147C39.783 32.2446 39.3212 31.7825 38.7507 31.7825Z' fill='%23FFF8F8'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_34_55' x1='40.9795' y1='53.1643' x2='17.341' y2='5.53424' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.0026' stop-color='%234AA36E'/%3E%3Cstop offset='1' stop-color='%2359C183'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_34_55'%3E%3Crect width='58' height='58' fill='white' transform='translate(0.588989 0.710449)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
	}
}

.docs-download-btn:hover {
	background: #DCFCE7;
	transform: scale(1.03);
}

/* Адаптивные мелочи */
@media (max-width: 480px) {
	.docs__item {
		padding: 12px 14px;
	}
	.doc-name {
		font-size: 15px;
	}
}