/* DOCS PAGE */

main {
	padding-top: 110px;
}

/* Hero */

.docs-hero {
	background: linear-gradient(254.33deg, #651305 0%, #000000 100%);
	padding: 80px 44px 100px;
}

.docs-hero-content {
	max-width: 1792px;
	margin: 0 auto;
}

.docs-hero-label {
	display: inline-block;
	margin-bottom: 20px;
	color: #F1600F;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.docs-hero h1 {
	font-size: 5rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1;
	margin-bottom: 24px;
}

.docs-hero p {
	font-size: 1.25rem;
	color: #ffffff80;
	font-weight: 400;
	max-width: 500px;
	line-height: 1.6;
}

/* List */

.docs-page {
	background-color: #F1F1F1;
	min-height: 60vh;
	padding: 60px 44px 80px;
}

.docs-list {
	display: flex;
	flex-direction: column;
	max-width: 1792px;
	margin: 0 auto;
}

.docs-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;

	padding: 28px 0;
	border-bottom: 1px solid #00000018;

	transition: background 0.2s;
}

.docs-item:first-child {
	border-top: 1px solid #00000018;
}

.docs-item-info {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	min-width: 0;
}

.docs-item-num {
	font-size: 0.85rem;
	font-weight: 500;
	color: #F1600F;
	letter-spacing: 0.05em;
	flex-shrink: 0;
	width: 28px;
}

.docs-item-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	background-color: #010101;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.docs-item:hover .docs-item-icon {
	background-color: #F1600F;
}

.docs-item-icon svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}

.docs-item-name {
	font-size: 1.1rem;
	font-weight: 500;
	color: #010101;
	line-height: 1.4;
}

.docs-item-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.docs-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.docs-btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.docs-btn-view {
	background-color: transparent;
	color: #010101;
	border: 1px solid #01010130;
}

.docs-btn-view svg {
	fill: #010101;
}

.docs-btn-view:hover {
	background-color: #010101;
	color: #FFFFFF;
	border-color: #010101;
}

.docs-btn-view:hover svg {
	fill: #FFFFFF;
}

.docs-btn-download {
	background-color: #F1600F;
	color: #FFFFFF;
	border: 1px solid #F1600F;
}

.docs-btn-download svg {
	fill: #FFFFFF;
}

.docs-btn-download:hover {
	background-color: transparent;
	color: #010101;
	border-color: #010101;
}

.docs-btn-download:hover svg {
	fill: #010101;
}

.docs-empty {
	color: #707070;
	font-size: 1rem;
	padding: 40px 0;
}

/* Adaptive */

@media (max-width: 834px) {
	.docs-hero {
		padding: 60px 22px 70px;
	}

	.docs-hero h1 {
		font-size: 3.5rem;
	}

	.docs-page {
		padding: 40px 22px 60px;
	}

	.docs-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.docs-item-actions {
		width: 100%;
	}

	.docs-btn {
		flex: 1;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	main {
		padding-top: 90px;
	}

	.docs-hero {
		padding: 40px 16px 50px;
	}

	.docs-hero h1 {
		font-size: 2.5rem;
	}

	.docs-hero p {
		font-size: 1rem;
	}

	.docs-page {
		padding: 30px 16px 50px;
	}

	.docs-item-num {
		display: none;
	}

	.docs-item-name {
		font-size: 1rem;
	}
}
