/**
 * Press Page Styles
 * Layout completo press listing basato su Figma design 2167-26691
 */

@layer base {

/* ========================================
   BREADCRUMBS
   ======================================== */

.s4w-breadcrumbs {
	width: 100%;
	border-top: 1px solid var(--stroke-soft-200);
	border-bottom: 1px solid var(--stroke-soft-200);
	background-color: var(--bg-white-0);
}

.s4w-breadcrumbs__container {
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	height: 36px;

	gap: 0 !important;
}

.s4w-breadcrumbs__item {
	display: flex;
	align-items: stretch;
	height: 100%;
}

.s4w-breadcrumbs__link,
.s4w-breadcrumbs__current {
	display: flex;
	align-items: center;
	padding: 10px;
	font-family: var(--font-secondary);
	font-size: var(--paragraph-xsmall);
	font-weight: var(--weight-regular);
	line-height: 16px;
	color: var(--text-soft-400);
	border-right: 1px solid var(--stroke-soft-200);
	transition: color var(--transition-fast);
}

.s4w-breadcrumbs__item:first-child .s4w-breadcrumbs__link,
.s4w-breadcrumbs__item:first-child .s4w-breadcrumbs__current {
	border-left: 1px solid var(--stroke-soft-200);
}

.s4w-breadcrumbs__link:hover {
	color: var(--text-main-900);
}

.s4w-breadcrumbs__current {
	color: var(--text-main-900);
	font-weight: var(--weight-regular);
}

/* ========================================
   PRESS HEADER PRIMARY
   ======================================== */

.press-header-primary {
	background: var(--bg-white-0);
	padding: 112px 0px 96px;
	overflow: hidden;
}

.press-header-primary__container {
	max-width: 1344px;
	margin: 0 auto;
}

.press-header-primary__content {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: flex-start;
	position: relative;
}

.press-header-primary__text-wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.press-header-primary__title-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	position: relative;
}

.press-header-primary__title {
	font-family: var(--font-primary);
	font-size: 96px;
	font-weight: var(--weight-book);
	line-height: 0.9;
	letter-spacing: -3.84px;
	text-transform: uppercase;
	color: var(--text-main-900);
	max-width: 1117px;
	margin: 0!important;
}

.press-header-primary__description {
	font-family: var(--font-secondary);
	font-size: var(--paragraph-medium);
	font-weight: var(--weight-regular);
	line-height: 1.6;
	color: var(--text-soft-400);
	width: 100%;
}

/* Category Filters dentro Header */
.press-header-primary__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	position: relative;
}

.press-filter-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 24px;
	height: 75px;
	width: auto;

	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-medium);
	line-height: 20px;
	letter-spacing: 0.42px;
	text-transform: uppercase;
	white-space: nowrap;

	border: 1px solid var(--stroke-soft-200);
	border-left: none;
	background: transparent;
	color: var(--text-main-900);
	transition: all var(--transition-fast);
}

.press-filter-link:first-child {
	border-left: 1px solid var(--stroke-soft-200);
}

.press-filter-link:hover {
	background: var(--bg-weak-100);
}

.press-filter-link.is-active {
	background: var(--bg-weak-100);
	color: var(--text-main-900);
	border-color: var(--stroke-soft-200);
}

/* Count Badge (apice al titolo) */
.press-header-primary__count {
	font-family: var(--font-primary);
	font-size: var(--label-large);
	font-weight: var(--weight-book);
	line-height: 0.9;
	letter-spacing: -0.54px;
	text-transform: uppercase;
	color: var(--text-main-900);
	flex-shrink: 0;
	margin-top: -6px;
}

/* Responsive Header */
@media (max-width: 1024px) {
	.press-header-primary {
		padding: 80px 0px 60px;
	}

	.press-header-primary__title {
		font-size: 56px;
		letter-spacing: -2.24px;
	}

	.press-header-primary__count {
		font-size: var(--paragraph-medium);
	}
}

@media (max-width: 768px) {
	.s4w-breadcrumbs__container {
		padding-left: 20px;
		padding-right: 12px;
	}

	.press-header-primary {
		padding: 60px 0px 40px;
	}

	.press-header-primary__title {
		font-size: 40px;
		letter-spacing: -1.6px;
	}

	.press-header-primary__filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE/Edge */
	}

	.press-header-primary__filters::-webkit-scrollbar {
		display: none; /* Chrome/Safari */
	}

	.press-filter-link {
		height: auto;
		padding: 12px 16px;
		font-size: var(--paragraph-xsmall);
	}
}

/* ========================================
   PRESS LISTING LAYOUT
   ======================================== */

.press-listing {
	padding-bottom: 96px;
}

.press-listing__wrapper {
	display: flex;
	gap: 0;
	align-items: start;
}

/* Mobile: stack layout */
@media (max-width: 1024px) {
	.press-listing__wrapper {
		flex-direction: column;
	}
}

/* ========================================
   PRESS TOOLBAR (Filtri + Search + Sort)
   ======================================== */

.press-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 6px;
}

.press-toolbar__toggle-filters {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;

	background: transparent;
	border: 1px solid var(--stroke-sub-300);
	cursor: pointer;
	transition: all var(--transition-fast);

	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-book);
	line-height: 20px;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: var(--text-main-900);
}

.press-toolbar__toggle-filters:hover,
.press-toolbar__toggle-filters.is-active {
	background: var(--bg-weak-100);
	border-color: var(--stroke-sub-300);
}

.press-toolbar__toggle-filters svg {
	width: 16px;
	height: 16px;
	color: var(--text-main-900);
	flex-shrink: 0;
}

.press-toolbar__filter-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	margin-left: 4px;

	font-family: var(--font-primary);
	font-size: 11px;
	font-weight: var(--weight-medium);
	line-height: 1;
	color: var(--text-white-0);

	background: var(--color-orange);
	border-radius: 50%;
	flex-shrink: 0;
}

.press-toolbar__right {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: flex-end;
	width: 770px;
}

/* Search Wrapper (container for input + dropdown) */
.press-toolbar__search-wrapper {
	position: relative;
	width: 337px;
}

/* Search */
.press-toolbar__search {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 44px;

	border: 1px solid var(--stroke-soft-200);
	background: white;
	width: 100%;
	padding: 0 16px;
}

.press-toolbar__search svg {
	width: 16px;
	height: 16px;
	color: var(--text-main-900);
	flex-shrink: 0;
}

.press-toolbar__search-input {
	border: none;
	background: transparent;
	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-medium);
	line-height: 20px;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: var(--text-main-900);
	width: 100%;
	outline: none !important;
	height: 100%;
	padding: 0;
	margin: 0;
	text-align: left;
	direction: ltr;
}

.press-toolbar__search-input::placeholder {
	color: var(--text-main-900);
}

/* Sort */
.press-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 12px 16px;
	color: var(--text-main-900) !important;
	background: transparent;
	border: 1px solid var(--stroke-soft-200);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.press-toolbar__sort:hover {
	background: var(--bg-soft-200);
	border-color: var(--stroke-strong-900);
}

.press-toolbar__sort-icon {
	width: 16px;
	height: 16px;
	color: var(--text-main-900);
	transition: transform var(--transition-fast);
}

.press-toolbar__sort[data-sort-order="asc"] .press-toolbar__sort-icon {
	transform: rotate(180deg);
}

/* Search Dropdown */
.press-search-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 100;

	display: flex;
	flex-direction: column;
	background: var(--bg-white-0);
	border: 1px solid var(--stroke-soft-200);
	padding: 16px 8px 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.press-search-dropdown__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 12px;
	cursor: pointer;
	transition: background-color var(--transition-fast);
	background: var(--bg-white-0);
}

.press-search-dropdown__item:first-child {
	background: var(--bg-weak-100);
}

.press-search-dropdown__item:hover,
.press-search-dropdown__item.is-active {
	background: var(--bg-weak-100);
}

.press-search-dropdown__item:first-child:hover,
.press-search-dropdown__item:first-child.is-active {
	background: var(--bg-soft-200);
}

.press-search-dropdown__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--text-sub-500);
}

.press-search-dropdown__text {
	flex: 1;
	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-book);
	line-height: 20px;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: var(--text-sub-500);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-feature-settings: 'liga' off, 'calt' off;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.press-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.press-toolbar__right {
		flex-direction: column;
		gap: 6px;
		width: 100%;
	}

	.press-toolbar__search-wrapper {
		width: 100%;
	}

	.press-toolbar__search {
		width: 100%;
	}

	.press-toolbar__sort {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================
   PRESS GRID (3 colonne)
   ======================================== */

.press-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.press-grid.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* ========================================
   PRESS CARD (Nuovo formato Figma)
   ======================================== */

.press-card {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border: 1px solid var(--stroke-soft-200);
	overflow: hidden;
	width: calc(33.333% - 1px);
	box-sizing: border-box;
	cursor: pointer;
}

/* Prima colonna ha border-left */
.press-card:nth-child(3n+1) {
	border-left: 1px solid var(--stroke-soft-200);
}

/* Seconda e terza colonna rimuovono border-left (condiviso con la card precedente) */
.press-card:nth-child(3n+2),
.press-card:nth-child(3n) {
	border-left: none;
}

/* Immagine 4:5 aspect ratio */
.press-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--bg-weak-100);
	margin-bottom: 20px;
}

.press-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.press-card:hover .press-card__image img {
	transform: scale(1.05);
}

/* Meta: Categoria + Data */
.press-card__meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;

	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-style: normal;
	font-weight: var(--weight-book);
	line-height: 20px;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	color: var(--text-sub-500);
	font-feature-settings: 'liga' off, 'calt' off;
	white-space: nowrap;
	margin-bottom: 20px;
}

.press-card__category {
	flex-shrink: 0;
	color: var(--text-sub-500);
	transition: color var(--transition-fast);
}

.press-card__category:hover {
	color: var(--text-main-900);
}

.press-card__date {
	flex-shrink: 0;
}

/* Body: Titolo + Link */
.press-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-bottom: 20px;
}

.press-card__title {
	font-family: var(--font-secondary);
	font-size: 20px;
	font-weight: var(--weight-regular);
	line-height: 1.6;
	color: var(--text-main-900);
	margin: 0 0 10px 0;

	/* Limita a 2 righe */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}



/* Tablet: 2 colonne */
@media (max-width: 1024px) {
	.press-card {
		width: 50%;
	}

	/* Reset regole 3 colonne */
	.press-card:nth-child(3n+1),
	.press-card:nth-child(3n+2),
	.press-card:nth-child(3n) {
		border-left: none;
	}

	/* Applica regole 2 colonne: solo la prima colonna ha border-left */
	.press-card:nth-child(2n+1) {
		border-left: 1px solid var(--stroke-soft-200);
	}
}

/* Mobile: 1 colonna */
@media (max-width: 768px) {
	.press-card {
		width: 100%;
	}

	/* Reset regole 2 colonne */
	.press-card:nth-child(2n+1) {
		border-left: none;
	}

	/* Tutte le card hanno border-left (1 colonna) */
	.press-card {
		border-left: 1px solid var(--stroke-soft-200) !important;
	}
}

/* ========================================
   EMPTY STATE
   ======================================== */

.press-empty {
		width: 100%;
	text-align: center;
	text-align: center;
	padding: var(--spacing-4xl) var(--spacing-xl);
	color: var(--text-soft-400);
}
.press-empty .paragraph-large {
	width: 100%;
	text-align: center;
}

/* ========================================
   PAGINATION
   ======================================== */

.press-pagination {
	margin-top: var(--spacing-4xl);
}

.press-pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--spacing-xs);
	list-style: none;
	padding: 0;
	margin: 0;
}

.press-pagination a,
.press-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: var(--spacing-xs) var(--spacing-sm);

	font-family: var(--font-primary);
	font-size: var(--label-medium);
	line-height: 1;
	font-weight: var(--label-medium-weight);

	color: var(--text-main-900);
	border: 1px solid var(--stroke-soft-200);
	background: transparent;
	transition: all var(--transition-fast);
}

.press-pagination a:hover {
	background: var(--bg-soft-200);
	border-color: var(--stroke-strong-900);
}

.press-pagination .current {
	background: var(--bg-strong-900);
	color: var(--text-white-0);
	border-color: var(--bg-strong-900);
}

.press-pagination .prev,
.press-pagination .next {
	font-size: var(--label-small);
	padding: var(--spacing-xs) var(--spacing-md);
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.press-listing {
		padding-bottom: var(--spacing-3xl);
	}

	.press-pagination .prev,
	.press-pagination .next {
		font-size: 0; /* Hide text on mobile */
	}

	.press-pagination .prev::before {
		content: '←';
		font-size: var(--label-medium);
	}

	.press-pagination .next::before {
		content: '→';
		font-size: var(--label-medium);
	}
}

/* ========================================
   PRESS SIDEBAR FILTERS
   ======================================== */

/* Active Filters Section */
.press-sidebar__active-filters {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
	padding: 0 20px 0 0;
}

.press-sidebar__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.press-filter-chip {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	gap: 4px;
	padding: 10px 12px;
	background: var(--bg-surface-700);
	color: var(--text-white-0);
	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-medium);
	line-height: 20px;
	letter-spacing: 0.56px;
	text-transform: uppercase;
	border-radius: 0;
	transition: opacity var(--transition-fast);
	white-space: nowrap;
}

.press-filter-chip:hover {
	opacity: 0.8;
}

.press-filter-chip svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.press-sidebar {
	position: sticky;
	top: var(--spacing-3xl);
	width: 280px;
	max-width: 280px;
	flex-shrink: 0;
	overflow: hidden;
	transition: max-width 0.4s ease, margin-right 0.4s ease;
}

.press-sidebar.is-hidden {
	max-width: 0;
	margin-right: 0;
	pointer-events: none;
}

.press-sidebar__inner {
	width: 280px;
	flex-shrink: 0;
	padding-right: 25px;
}

.press-sidebar__active-filters {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-2xl);
}

.press-sidebar__active-filters .btn.btn--link {
	width: fit-content;
}

.press-sidebar__filter-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-2xs);
}

.press-sidebar__filter-tag {
	display: flex;
	align-items: center;
	gap: var(--spacing-3xs);
	padding: var(--spacing-2xs) var(--spacing-xs);
	background: var(--bg-surface-700);
	font-family: var(--font-primary);
	font-size: var(--label-small);
	line-height: var(--label-small-lh);
	letter-spacing: var(--label-small-ls);
	font-weight: var(--label-small-weight);
	text-transform: uppercase;
	color: var(--text-white-0);
}

.press-sidebar__filter-tag-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	color: var(--text-white-0);
	transition: opacity var(--transition-fast);
}

.press-sidebar__filter-tag-close:hover {
	opacity: 0.7;
}

.press-sidebar__groups {
	display: flex;
	flex-direction: column;
}

.press-sidebar__group {
	display: flex;
	flex-direction: column;
}

.press-sidebar__separator {
	height: 1px;
	background: var(--stroke-soft-200);
	margin-bottom: var(--spacing-md);
}

.press-sidebar__group-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: transparent;
	border: none;
	padding: var(--spacing-3xs) 0;
	cursor: pointer;
	text-align: left;
	margin-bottom: var(--spacing-sm);
}

.press-sidebar__group-title {
	font-family: var(--font-primary);
	font-size: var(--label-medium);
	line-height: var(--label-medium-lh);
	letter-spacing: var(--label-medium-ls);
	font-weight: var(--label-medium-weight);
	text-transform: uppercase;
	color: var(--text-main-900);
}

.press-sidebar__chevron {
	width: 24px;
	height: 24px;
	transition: transform var(--transition-fast);
	color: var(--text-main-900);
}

.press-sidebar__group-header[aria-expanded="false"] .press-sidebar__chevron {
	transform: rotate(-90deg);
}

.press-sidebar__group-content {
	overflow: hidden;
	transition: max-height var(--transition-normal), opacity var(--transition-fast);
	max-height: 500px;
	opacity: 1;
}

.press-sidebar__group-content.is-collapsed {
	max-height: 0;
	opacity: 0;
	margin-bottom: 0;
}

.press-sidebar__checkboxes {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-md);
}

.press-sidebar__checkbox {
	display: flex;
	align-items: center;
	gap: var(--spacing-2xs);
	cursor: pointer;
	user-select: none;
}

.press-sidebar__checkbox input[type="checkbox"],
.press-sidebar__checkbox input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.press-sidebar__checkbox-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	border: 1px solid var(--stroke-sub-300);
	background: transparent;
	transition: all var(--transition-fast);
	position: relative;
	flex-shrink: 0;
}

.press-sidebar__checkbox input[type="checkbox"]:checked + .press-sidebar__checkbox-box,
.press-sidebar__checkbox input[type="radio"]:checked + .press-sidebar__checkbox-box {
	background: var(--color-orange);
	border-color: var(--color-orange);
}

.press-sidebar__checkbox input[type="checkbox"]:checked + .press-sidebar__checkbox-box::after,
.press-sidebar__checkbox input[type="radio"]:checked + .press-sidebar__checkbox-box::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 6px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(-45deg) translateY(-1px);
}

.press-sidebar__checkbox-label {
	font-family: var(--font-secondary);
	font-size: var(--paragraph-small);
	line-height: var(--paragraph-small-lh);
	color: var(--text-sub-500);
}

/* Mobile: hide sidebar by default */
@media (max-width: 1024px) {
	.press-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 320px;
		height: 100vh;
		background: white;
		z-index: 1000;
		padding: var(--spacing-3xl) var(--spacing-lg);
		overflow-y: auto;
		transform: translateX(-100%);
		opacity: 1;
		transition: transform var(--transition-normal);
	}

	.press-sidebar.is-visible {
		transform: translateX(0);
		pointer-events: all;
	}

	.press-sidebar.is-hidden {
		transform: translateX(-100%);
	}
}

/* Sidebar Overlay (Mobile) */
.press-sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.press-sidebar-overlay.is-visible {
	display: block;
	opacity: 1;
}

/* Main content area */
.press-listing__content {
	flex: 1;
	min-width: 0;
}

.press-listing__content.is-fullwidth {
	width: 100%;
}

/* ========================================
   PRESS PAGINATION
   ======================================== */

.press-pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.press-pagination ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.press-pagination li {
	margin: 0;
}

.press-pagination a,
.press-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 24px;
	height: 75px;
	min-width: 75px;

	font-family: var(--font-primary);
	font-size: var(--paragraph-small);
	font-weight: var(--weight-medium);
	line-height: 20px;
	letter-spacing: 0.42px;
	text-transform: uppercase;
	white-space: nowrap;

	border-top: 1px solid var(--stroke-soft-200);
	border-right: 1px solid var(--stroke-soft-200);
	border-bottom: 1px solid var(--stroke-soft-200);
	border-left: none;
	background: transparent;
	color: var(--text-main-900);
	transition: all var(--transition-fast);
}

.press-pagination li:first-child a,
.press-pagination li:first-child span {
	border-left: 1px solid var(--stroke-soft-200);
}

.press-pagination a:hover {
	background: var(--bg-weak-100);
	border-color: var(--stroke-soft-200);
}

.press-pagination .current {
	background: var(--bg-weak-100);
	color: var(--text-main-900);
	border-color: var(--stroke-soft-200);
}

.press-pagination .dots {
	pointer-events: none;
	color: var(--text-soft-400);
}

@media (max-width: 768px) {
	.press-pagination {
		margin-top: 40px;
	}

	.press-pagination a,
	.press-pagination span {
		height: auto;
		padding: 12px 16px;
		min-width: 50px;
		font-size: var(--paragraph-xsmall);
	}
}

} /* @layer base */
