.bookmarks-section {
	background: linear-gradient(145deg, #f3f7fb 0%, #ffffff 100%);
	padding: 60px 0 70px;
}

.bookmarks-header {
	margin-bottom: 30px;
}

.bookmarks-header .title {
	font-size: 34px;
	margin-bottom: 10px;
}

.bookmarks-header .description {
	max-width: 780px;
	font-size: 16px;
	line-height: 1.7;
}

.bookmarks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
}

.call-center-section {
	margin-top: 30px;
	padding: 22px 20px;
	background: #ffffff;
	border: 1px solid #e5ebf1;
	border-left: 4px solid #f57c00;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(12, 34, 56, 0.06);
}

.call-center-title {
	margin: 0 0 8px;
	font-size: 24px;
	color: #0f406a;
}

.call-center-note {
	margin: 0 0 12px;
	font-size: 15px;
	color: #5e6e7f;
}

.call-center-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 10px;
}

.call-center-list li a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	background: #f7fafc;
	border: 1px solid #e5ebf1;
	color: #0f406a;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.call-center-list li a:hover,
.call-center-list li a:focus {
	border-color: #f57c00;
	background: #fff8f1;
}

.bookmark-card {
	display: block;
	background: #ffffff;
	border: 1px solid #e5ebf1;
	border-radius: 14px;
	padding: 20px 18px;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(12, 34, 56, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bookmark-card:hover,
.bookmark-card:focus {
	transform: translateY(-4px);
	border-color: #f57c00;
	box-shadow: 0 14px 30px rgba(12, 34, 56, 0.12);
	text-decoration: none;
}

.bookmark-card .icon {
	font-size: 30px;
	color: #f57c00;
	margin-bottom: 8px;
}

.bookmark-card h3 {
	font-size: 18px;
	margin: 0 0 8px;
}

.bookmark-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #5e6e7f;
}

.bookmark-card .url {
	display: inline-block;
	margin-top: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #0f406a;
}

@media (max-width: 767px) {
	.bookmarks-section {
		padding: 45px 0 55px;
	}

	.bookmarks-header .title {
		font-size: 28px;
	}

	.call-center-title {
		font-size: 22px;
	}
}
