/**
 * Styles for the free Photoshop Brushes page
 *
 * @copyright   2026, ON1
 */

/* !- Page navigation */
#page-navigation {
	background: var(--bg-800);
}

#page-navigation .nav-item {
	margin: 0 0.75rem 0 0;
}

#page-navigation .nav-item:last-child {
	margin-right: 0;
}

#page-navigation .nav-link {
	border-bottom: 3px solid transparent;
	color: var(--text-300);
	font-size: var(--text-xs);
	font-weight: 500;
	padding: 1rem 0.75rem;
}

#page-navigation .nav-link.active,
#page-navigation .nav-link:hover {
	border-color: var(--blue-500);
	color: var(--text-100);
}

/* !- Hero
 *
 * No background photo yet, so this is a flat band on the page tokens - it
 * follows the theme toggle rather than being pinned dark like the LUTs and
 * Lightroom Presets heroes, which are pinned because they sit over artwork.
 * Add the image, a scrim and data-theme="dark" together if one arrives.
 */
#hero {
	padding: 4rem 0 3rem 0;
}

#hero .breadcrumb {
	color: var(--text-300);
	font-size: var(--text-mini);
}

#hero .breadcrumb .separator {
	margin: 0 0.25rem;
}

#hero .breadcrumb a {
	color: var(--text-300);
	text-decoration: none;
}

#hero .breadcrumb a:hover {
	color: var(--text-100);
	text-decoration: underline;
}

#hero .breadcrumb .here {
	color: var(--text-100);
}

#hero .list-inline,
#hero .list-inline-item {
	margin-bottom: 0;
}

#hero .works-with {
	margin-bottom: 2rem;
}

#hero .works-with .rounded-pill {
	background: var(--bg-800);
	border: 1px solid var(--bg-700);
	color: var(--text-200);
	font-size: var(--text-micro);
	font-weight: 500;
	padding: 0.375rem 0.75rem;
}

#hero .btn {
	padding: 0.9375rem 1.875rem;
}

#hero .hero-note {
	color: var(--text-300);
	font-size: var(--text-mini);
	margin-left: 0.75rem;
}

/* !- Brush packs */
#brushes #brushGrid>.col {
	display: flex;
}

#brushes .brush-card {
	background: var(--bg-800);
	border-radius: var(--border-radius);
	display: flex;
	flex: 1;
	flex-direction: column;
}

#brushes .brush-card>img {
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

#brushes .brush-wrap {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
}

#brushes .brush-name {
	color: var(--text-100);
	font-size: var(--text-lg);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}

#brushes .brush-source {
	align-items: center;
	color: var(--gold-500);
	display: flex;
	font-size: var(--text-mini);
	font-weight: 600;
	gap: 0.25rem;
	margin-bottom: 0;
}

#brushes .brush-source i {
	margin-top: -0.075rem;
}

#brushes .brush-desc {
	color: var(--text-500);
	flex: 1;
	font-size: var(--text-xs);
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

#brushes .brush-actions {
	display: flex;
	gap: 0.75rem;
}

#brushes .brush-actions .btn {
	flex: 1;
	font-size: var(--text-xs);
	font-weight: 600;
	padding: 0.75rem;
}

/* !- Trial download banner */
#trial-dl-banner {
	background: var(--bg-700);
}

#trial-dl-banner h3 {
	color: var(--text-50);
}

#trial-dl-banner .trial-dl-banner-copy {
	font-size: var(--text-sm);
	line-height: 1.5;
}

#trial-dl-banner .btn {
	padding: 0.9375rem 1.875rem;
}

#trial-dl-banner .icon-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

/* !- Install */
#install .install-card {
	background: var(--bg-800);
	border-radius: var(--border-radius);
	height: 100%;
	padding: 1.5rem;
}

#install .install-card .badge {
	font-size: var(--text-sm);
	font-weight: 500;
}

#install .install-card .install-title {
	color: var(--text-100);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

#install .install-card .install-copy {
	font-size: var(--text-xs);
}

/* !- Tips and tricks */
#tips {
	background: var(--bg-800);
}

#tips .section-intro {
	margin-bottom: 1.75rem;
}

#tips.faqs .faq-item {
	background: var(--bg-900);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	padding: 1.5rem;
}

#tips.faqs .faq-item:first-of-type {
	border: none;
}

#tips.faqs .faq-item:last-child {
	margin-bottom: 0;
}

#tips.faqs .faq-q {
	font-size: var(--text-base);
}

#tips.faqs .faq-a {
	font-size: var(--text-sm);
}

