.portal-socios-wrapper,
.portal-socios-login-wrap,
.portal-socios-directory {
	--portal-socios-color-text: var(--wp--preset--color--contrast, var(--wp--preset--color--foreground, currentColor));
	--portal-socios-color-muted: var(--wp--preset--color--secondary, var(--wp--preset--color--tertiary, color-mix(in srgb, var(--portal-socios-color-text) 72%, transparent)));
	--portal-socios-color-surface: var(--wp--preset--color--base, var(--wp--preset--color--background, Canvas));
	--portal-socios-color-surface-alt: color-mix(in srgb, var(--portal-socios-color-surface) 92%, var(--portal-socios-color-text) 8%);
	--portal-socios-color-border: color-mix(in srgb, var(--portal-socios-color-surface) 82%, var(--portal-socios-color-text) 18%);
	--portal-socios-color-accent: var(--wp--preset--color--primary, var(--wp--preset--color--accent, var(--portal-socios-color-text)));
	--portal-socios-color-accent-contrast: var(--wp--preset--color--base, var(--wp--preset--color--background, Canvas));
	--portal-socios-color-success: var(--wp--preset--color--success, color-mix(in srgb, var(--portal-socios-color-accent) 70%, #166534 30%));
	--portal-socios-color-error: var(--wp--preset--color--error, color-mix(in srgb, var(--portal-socios-color-text) 15%, #b91c1c 85%));
	--portal-socios-color-info: var(--wp--preset--color--primary, var(--portal-socios-color-accent));
	--portal-socios-color-link: var(--wp--preset--color--primary, var(--portal-socios-color-accent));
	--portal-socios-shadow-soft: 0 12px 28px color-mix(in srgb, var(--portal-socios-color-text) 10%, transparent);
	font-family: var(--wp--preset--font-family--body, inherit);
	color: var(--portal-socios-color-text);
}

.portal-socios-surface {
	max-width: 980px;
	margin: 24px auto;
	padding: 24px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 20px;
	background: var(--portal-socios-color-surface);
	box-shadow: var(--portal-socios-shadow-soft);
}

.portal-socios-header {
	max-width: 980px;
	margin: 0 auto 16px;
	padding: 0 4px;
}

.portal-socios-header h2,
.portal-socios-wrapper h2,
.portal-socios-card-header h3 {
	margin: 0 0 8px;
	color: inherit;
	font-family: var(--wp--preset--font-family--heading, inherit);
}

.portal-socios-header p,
.portal-socios-section-heading p,
.portal-socios-card-header p {
	margin: 0;
	color: var(--portal-socios-color-muted);
	line-height: 1.6;
}

.portal-socios-kicker {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid var(--portal-socios-color-border);
	background: var(--portal-socios-color-surface-alt);
	color: var(--portal-socios-color-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.portal-socios-menu-links {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.portal-socios-menu-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1px solid #fff;
	color: inherit;
	font: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
}

.portal-socios-menu-link-button:hover,
.portal-socios-menu-link-button:focus {
	color: inherit;
	text-decoration: none;
}

.portal-socios-section-heading {
	margin-bottom: 24px;
}

.portal-socios-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	margin-bottom: 24px;
}

.portal-socios-tabs-has-logout {
	align-items: stretch;
}

.portal-socios-tab-button {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	min-width: 0;
	padding: 14px 14px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 16px;
	background: var(--portal-socios-color-surface-alt);
	color: var(--portal-socios-color-text);
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.portal-socios-tab-link {
	color: inherit;
	font: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-decoration: none;
	text-transform: none;
}

.portal-socios-tab-link {
	background: color-mix(in srgb, var(--portal-socios-color-error) 12%, var(--portal-socios-color-surface));
	border-color: color-mix(in srgb, var(--portal-socios-color-error) 38%, var(--portal-socios-color-border));
	color: var(--portal-socios-color-error);
}

.portal-socios-tab-link:hover {
	background: color-mix(in srgb, var(--portal-socios-color-error) 18%, var(--portal-socios-color-surface));
	border-color: var(--portal-socios-color-error);
	color: var(--portal-socios-color-error);
}

.portal-socios-tab-button:hover {
	border-color: var(--portal-socios-color-accent);
	background: color-mix(in srgb, var(--portal-socios-color-surface) 90%, var(--portal-socios-color-accent) 10%);
}

.portal-socios-tab-button.is-active {
	background: var(--portal-socios-color-accent);
	border-color: var(--portal-socios-color-accent);
	color: var(--portal-socios-color-accent-contrast);
	box-shadow: 0 12px 24px color-mix(in srgb, var(--portal-socios-color-accent) 22%, transparent);
}

.portal-socios-tab-panel {
	display: none;
}

.portal-socios-tab-panel.is-active {
	display: block;
	animation: portalSociosFade 0.2s ease;
}

.portal-socios-form-card {
	width: 100%;
	box-sizing: border-box;
	padding: 22px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 18px;
	background: var(--portal-socios-color-surface);
}

.portal-socios-form {
	width: 100%;
}

.portal-socios-card-header {
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--portal-socios-color-border);
}

.portal-socios-login-wrap {
	max-width: 560px;
	margin: 24px auto;
}

.portal-socios-login-form p {
	margin: 0 0 16px;
}

.portal-socios-login-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: inherit;
}

.portal-socios-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	width: 100%;
	display: block;
	min-height: 52px;
	padding: 12px 14px;
	border: 2px solid var(--portal-socios-color-border);
	border-radius: 12px;
	box-sizing: border-box;
	background: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%);
	color: inherit;
	font: inherit;
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-text) 12%, transparent);
}

.portal-socios-login-wrap .portal-socios-login-form .input,
.portal-socios-login-wrap .portal-socios-login-form input[type="text"],
.portal-socios-login-wrap .portal-socios-login-form input[type="password"],
.portal-socios-login-wrap .portal-socios-login-form input[type="email"],
.portal-socios-login-wrap .portal-socios-login-form #user_login,
.portal-socios-login-wrap .portal-socios-login-form #user_pass,
.portal-socios-login-wrap .portal-socios-login-form .login-username input,
.portal-socios-login-wrap .portal-socios-login-form .login-password input {
	width: 100%;
	display: block;
	min-height: 52px;
	padding: 12px 14px;
	border: 2px solid var(--portal-socios-color-border) !important;
	border-radius: 12px !important;
	box-sizing: border-box;
	background: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%) !important;
	background-image: none !important;
	color: inherit !important;
	font: inherit !important;
	line-height: 1.4;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-text) 12%, transparent) !important;
}

.portal-socios-login-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus {
	border-color: var(--portal-socios-color-accent);
	background: var(--portal-socios-color-surface);
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-accent) 20%, transparent),
		0 0 0 3px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent);
	outline: none;
}

.portal-socios-login-wrap .portal-socios-login-form .input:focus,
.portal-socios-login-wrap .portal-socios-login-form input[type="text"]:focus,
.portal-socios-login-wrap .portal-socios-login-form input[type="password"]:focus,
.portal-socios-login-wrap .portal-socios-login-form input[type="email"]:focus,
.portal-socios-login-wrap .portal-socios-login-form #user_login:focus,
.portal-socios-login-wrap .portal-socios-login-form #user_pass:focus,
.portal-socios-login-wrap .portal-socios-login-form .login-username input:focus,
.portal-socios-login-wrap .portal-socios-login-form .login-password input:focus {
	border-color: var(--portal-socios-color-accent) !important;
	background: var(--portal-socios-color-surface) !important;
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-accent) 20%, transparent),
		0 0 0 3px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent) !important;
	outline: none !important;
}

.portal-socios-login-wrap .portal-socios-login-form .login-submit input[type="submit"] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 52px;
	padding: 13px 20px;
	border: 2px solid var(--portal-socios-color-accent) !important;
	border-radius: 12px !important;
	background: var(--portal-socios-color-accent) !important;
	color: var(--portal-socios-color-accent-contrast) !important;
	font: inherit !important;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-accent-contrast) 12%, transparent),
		0 12px 24px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent) !important;
}

.portal-socios-login-form .login-submit {
	margin-top: 20px;
}

.portal-socios-login-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 52px;
	padding: 13px 20px;
	border: 2px solid var(--portal-socios-color-accent);
	border-radius: 12px;
	background: var(--portal-socios-color-accent);
	color: var(--portal-socios-color-accent-contrast);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-accent-contrast) 12%, transparent),
		0 12px 24px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent);
}

.portal-socios-login-form .forgetmenot {
	display: flex;
	align-items: center;
	gap: 8px;
}

.portal-socios-login-associate {
	margin: 8px 0 0;
	text-align: left;
}

.portal-socios-login-associate a {
	color: var(--portal-socios-color-link);
	font-weight: 700;
	text-decoration: none;
}

.portal-socios-login-associate a:hover {
	text-decoration: underline;
}

.portal-socios-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.portal-socios-field,
.portal-socios-directory-field {
	min-width: 0;
}

.portal-socios-field-full {
	grid-column: 1 / -1;
}

.portal-socios-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.portal-socios-field .portal-socios-field-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: inherit;
}

.portal-socios-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.portal-socios-field textarea,
.portal-socios-field select {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 2px solid var(--portal-socios-color-border);
	border-radius: 12px;
	box-sizing: border-box;
	background: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%);
	color: inherit;
	font: inherit;
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-surface) 70%, var(--portal-socios-color-text) 30%);
	-webkit-appearance: none;
	appearance: none;
}

.portal-socios-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.portal-socios-field textarea:focus,
.portal-socios-field select:focus {
	border-color: var(--portal-socios-color-accent);
	background: var(--portal-socios-color-surface);
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--portal-socios-color-accent) 20%, transparent),
		0 0 0 3px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent);
	outline: none;
}

.portal-socios-form .portal-socios-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.portal-socios-form .portal-socios-field textarea,
.portal-socios-form .portal-socios-field select {
	display: block;
	border-style: solid;
	border-width: 2px;
	border-color: var(--portal-socios-color-border);
	background-color: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%);
	background-image: none;
}

.portal-socios-form .portal-socios-field select {
	padding-right: 42px;
}

.portal-socios-form .portal-socios-field textarea {
	min-height: 140px;
	resize: vertical;
}

.portal-socios-checkbox {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	min-height: 50px;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.portal-socios-checkbox span {
	display: block;
	width: 100%;
}

.portal-socios-checkbox input,
.portal-socios-public-toggle input {
	width: auto;
	padding: 0;
	accent-color: var(--portal-socios-color-accent);
}

.portal-socios-public-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 0;
	line-height: 1.4;
}

.portal-socios-public-toggle-label {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--portal-socios-color-muted);
	letter-spacing: 0;
	cursor: pointer;
}

.portal-socios-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 52px;
	margin-top: 20px;
	padding: 13px 20px;
	border: 2px solid var(--portal-socios-color-accent);
	border-radius: 12px;
	background: var(--portal-socios-color-accent);
	color: var(--portal-socios-color-accent-contrast);
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent);
	font: inherit;
	text-decoration: none;
}

.portal-socios-form .portal-socios-submit,
.portal-socios-directory-submit .portal-socios-submit,
.portal-socios-page-link,
.portal-socios-tab-button {
	border-style: solid;
	border-width: 2px;
}

.portal-socios-submit:hover {
	filter: brightness(0.96);
}

.portal-socios-submit:focus,
.portal-socios-page-link:focus,
.portal-socios-tab-button:focus {
	outline: none;
	box-shadow:
		0 0 0 3px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent),
		0 12px 24px color-mix(in srgb, var(--portal-socios-color-accent) 18%, transparent);
}

.portal-socios-notice {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	max-width: 980px;
	margin: 0 auto 16px;
	padding: 16px 18px;
	border-radius: 16px;
	border: 1px solid transparent;
	box-shadow: 0 10px 22px color-mix(in srgb, var(--portal-socios-color-text) 8%, transparent);
}

.portal-socios-notice strong {
	display: block;
	margin: 0 0 4px;
}

.portal-socios-notice span {
	display: block;
	line-height: 1.5;
}

.portal-socios-notice-success {
	background: color-mix(in srgb, var(--portal-socios-color-surface) 88%, var(--portal-socios-color-success) 12%);
	color: var(--portal-socios-color-success);
	border-color: color-mix(in srgb, var(--portal-socios-color-surface) 70%, var(--portal-socios-color-success) 30%);
}

.portal-socios-notice-error {
	background: color-mix(in srgb, var(--portal-socios-color-surface) 88%, var(--portal-socios-color-error) 12%);
	color: var(--portal-socios-color-error);
	border-color: color-mix(in srgb, var(--portal-socios-color-surface) 70%, var(--portal-socios-color-error) 30%);
}

.portal-socios-notice-info {
	background: color-mix(in srgb, var(--portal-socios-color-surface) 88%, var(--portal-socios-color-info) 12%);
	color: var(--portal-socios-color-info);
	border-color: color-mix(in srgb, var(--portal-socios-color-surface) 70%, var(--portal-socios-color-info) 30%);
}

.portal-socios-directory {
	width: min(100%, 1600px);
	max-width: none;
	margin: 24px auto;
}

.portal-socios-directory-filters {
	margin-bottom: 24px;
	padding: 20px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 18px;
	background: var(--portal-socios-color-surface);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--portal-socios-color-text) 5%, transparent);
}

.portal-socios-directory-filter-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: end;
}

.portal-socios-directory-submit {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.portal-socios-directory-submit .portal-socios-submit {
	width: 100%;
	min-width: 0;
}

.portal-socios-directory-submit .portal-socios-field-label {
	display: none;
}

.portal-socios-directory-empty {
	padding: 18px 20px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 16px;
	background: var(--portal-socios-color-surface);
	color: var(--portal-socios-color-text);
}

.portal-socios-directory-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.portal-socios-directory-summary-head {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) 32px;
	gap: 20px;
	margin-bottom: 8px;
	padding: 0 24px;
}

.portal-socios-directory-summary-head-item {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--portal-socios-color-muted);
}

.portal-socios-directory-card {
	padding: 22px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 18px;
	background: var(--portal-socios-color-surface);
	box-shadow: 0 12px 26px color-mix(in srgb, var(--portal-socios-color-text) 6%, transparent);
	margin-bottom: 16px;
}

.portal-socios-directory-card-accordion {
	padding: 0;
	overflow: hidden;
	border-radius: 20px;
}

.portal-socios-directory-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) 32px;
	gap: 20px;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	background: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%);
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.portal-socios-directory-summary::-webkit-details-marker {
	display: none;
}

.portal-socios-directory-card-accordion[open] .portal-socios-directory-summary {
	background: color-mix(in srgb, var(--portal-socios-color-surface) 92%, var(--portal-socios-color-accent) 8%);
}

.portal-socios-directory-summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 999px;
	background: var(--portal-socios-color-surface);
	color: var(--portal-socios-color-accent);
	font-size: 22px;
	line-height: 1;
	font-weight: 400;
}

.portal-socios-directory-card-accordion[open] .portal-socios-directory-summary::after {
	content: "-";
}

.portal-socios-directory-summary-item {
	min-width: 0;
	color: var(--portal-socios-color-text);
}

.portal-socios-directory-summary-item {
	font-size: 1.05rem;
	font-weight: 600;
}

.portal-socios-directory-card-body {
	padding: 16px 18px 18px;
	border-top: 1px solid var(--portal-socios-color-border);
	background: var(--portal-socios-color-surface);
}

.portal-socios-directory-layout {
	display: grid;
	gap: 12px;
}

.portal-socios-directory-triple {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.portal-socios-directory-block {
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid color-mix(in srgb, var(--portal-socios-color-border) 72%, transparent);
	border-radius: 16px;
	background: color-mix(in srgb, var(--portal-socios-color-surface) 96%, var(--portal-socios-color-text) 4%);
}

.portal-socios-directory-block-wide {
	grid-column: 1 / -1;
	width: calc(100% - 30px);
}

.portal-socios-directory-label {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--portal-socios-color-muted);
}

.portal-socios-directory-value,
.portal-socios-directory-copy {
	line-height: 1.5;
	color: var(--portal-socios-color-text);
}

.portal-socios-directory-copy {
	font-size: 0.98rem;
}

.portal-socios-directory-value a {
	color: var(--portal-socios-color-link);
	font-weight: 600;
	text-decoration: none;
}

.portal-socios-directory-value a:hover {
	text-decoration: underline;
}

.portal-socios-directory-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.portal-socios-directory-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--portal-socios-color-border);
	border-radius: 999px;
	background: var(--portal-socios-color-surface);
	font-size: 18px;
	line-height: 1;
	cursor: help;
}

.portal-socios-directory-card-header {
	margin-bottom: 14px;
}

.portal-socios-directory-card-single {
	max-width: none;
}

.portal-socios-directory-card h3 {
	margin: 0 0 14px;
	color: inherit;
	font-family: var(--wp--preset--font-family--heading, inherit);
}

.portal-socios-directory-card h3 a {
	color: inherit;
	text-decoration: none;
}

.portal-socios-directory-card h3 a:hover {
	text-decoration: underline;
}

.portal-socios-directory-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin: 0;
}

.portal-socios-directory-field {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	gap: 18px;
	margin: 0;
	padding: 12px 0;
	line-height: 1.6;
	color: var(--portal-socios-color-muted);
	border-bottom: 1px solid color-mix(in srgb, var(--portal-socios-color-border) 72%, transparent);
}

.portal-socios-directory-field dt,
.portal-socios-directory-field dd {
	margin: 0;
}

.portal-socios-directory-field dt {
	font-weight: 700;
	color: var(--portal-socios-color-text);
	font-size: 0.96rem;
}

.portal-socios-directory-field dd {
	font-size: 1rem;
	color: var(--portal-socios-color-text);
}

.portal-socios-directory-fields > .portal-socios-directory-field:last-child {
	border-bottom: 0;
}

.portal-socios-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.portal-socios-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 2px solid var(--portal-socios-color-border);
	border-radius: 12px;
	background: var(--portal-socios-color-surface);
	color: var(--portal-socios-color-text);
	text-decoration: none;
	font-weight: 700;
}

.portal-socios-page-link.is-active {
	background: var(--portal-socios-color-accent);
	border-color: var(--portal-socios-color-accent);
	color: var(--portal-socios-color-accent-contrast);
}

@keyframes portalSociosFade {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 800px) {
	.portal-socios-tabs,
	.portal-socios-grid,
	.portal-socios-directory-fields,
	.portal-socios-directory-triple,
	.portal-socios-directory-filter-grid,
	.portal-socios-directory-grid {
		grid-template-columns: 1fr;
	}

	.portal-socios-directory-summary {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.portal-socios-directory-summary-head {
		display: none;
	}
}

@media (max-width: 640px) {
	.portal-socios-surface {
		padding: 18px;
		border-radius: 16px;
	}

	.portal-socios-tabs {
		flex-wrap: wrap;
		gap: 10px;
	}

	.portal-socios-tab-button {
		flex: 1 1 calc(50% - 10px);
		min-height: 50px;
		padding: 12px;
		white-space: normal;
	}

	.portal-socios-form-card {
		padding: 16px;
	}

	.portal-socios-submit {
		width: 100%;
		min-width: 0;
	}

	.portal-socios-notice {
		padding: 14px 16px;
	}
}
