/*
Theme Name: Guesto
Theme URI: https://example.com/guesto
Author: Guesto Theme
Author URI: https://example.com
Description: A guest-posting and content publishing marketplace theme with topic directories, publisher listings, publication feeds, and front-end guest post submission.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: guesto
Tags: blog, custom-logo, custom-menu, featured-images, one-column, two-columns, right-sidebar, threaded-comments, translation-ready
*/

:root {
	--bg: #f7f5ef;
	--surface: #ffffff;
	--surface-2: #f0f6f2;
	--ink: #18211d;
	--muted: #63706a;
	--line: #dce2db;
	--brand: #19684a;
	--brand-strong: #0d4d37;
	--blue: #265e9f;
	--amber: #c78316;
	--red: #b33b3b;
	--soft-blue: #e9f1fb;
	--soft-amber: #fff4df;
	--shadow: 0 18px 40px rgba(24, 33, 29, 0.08);
	--radius: 8px;
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--brand);
}

button,
input,
select,
textarea {
	font: inherit;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	padding: 13px 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(25, 104, 74, 0.14);
}

label {
	display: inline-block;
	margin: 0 0 7px;
	font-weight: 700;
	color: #28332e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 14px;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.1;
}

h1 {
	font-size: 72px;
}

h2 {
	font-size: 44px;
}

h3 {
	font-size: 22px;
}

p {
	margin: 0 0 18px;
}

ul,
ol {
	margin-top: 0;
}

.container {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.screen-reader-text:focus,
.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	gap: 8px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	padding: 12px 18px;
	font-weight: 800;
	line-height: 1.1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--brand);
	color: #fff;
	box-shadow: 0 12px 24px rgba(25, 104, 74, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--brand-strong);
	color: #fff;
}

.btn-secondary {
	background: #fff;
	color: var(--ink);
	border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	border-color: var(--brand);
	background: var(--surface-2);
}

.btn-light {
	background: #fff;
	color: var(--brand-strong);
}

.text-link {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	color: var(--brand);
}

.text-link::after {
	content: "";
	width: 18px;
	height: 18px;
	margin-left: 7px;
	background:
		linear-gradient(45deg, transparent 48%, currentColor 48%, currentColor 56%, transparent 56%),
		linear-gradient(90deg, currentColor 0 70%, transparent 70%);
	background-size: 12px 12px, 18px 2px;
	background-position: 6px 3px, 0 8px;
	background-repeat: no-repeat;
}

.section-kicker {
	margin: 0 0 12px;
	color: var(--brand);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-block {
	padding: 84px 0;
}

.section-muted {
	background: var(--surface-2);
}

.section-heading {
	margin-bottom: 30px;
}

.section-heading h2 {
	max-width: 780px;
	margin-bottom: 0;
}

.split-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(247, 245, 239, 0.96);
	border-bottom: 1px solid rgba(220, 226, 219, 0.8);
	backdrop-filter: blur(14px);
}

.top-strip {
	background: var(--ink);
	color: #eef5ef;
	font-size: 14px;
}

.top-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 20px;
}

.top-strip p {
	margin: 0;
}

.top-strip a {
	color: #b8f0d4;
	font-weight: 800;
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	gap: 28px;
}

.brand-wrap {
	flex: 0 0 auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius);
	background: var(--brand);
	color: #fff;
	font-weight: 900;
}

.site-brand strong {
	display: block;
	font-size: 20px;
	line-height: 1.1;
}

.site-brand small {
	display: block;
	max-width: 180px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.2;
}

.custom-logo-link img {
	max-width: 210px;
	max-height: 64px;
	object-fit: contain;
}

.site-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex: 1;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 800;
}

.primary-menu a {
	color: #2f3d36;
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown-toggle,
.menu-toggle {
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.nav-dropdown-toggle {
	position: relative;
	padding: 12px 18px 12px 0;
	font-weight: 900;
}

.nav-dropdown-toggle::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
}

.mega-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	width: min(860px, calc(100vw - 40px));
	padding: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.is-open .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.mega-menu-grid a,
.topic-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 62px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 13px 14px;
}

.mega-menu-grid span,
.topic-card span {
	font-weight: 900;
}

.mega-menu-grid small,
.topic-card strong {
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.mega-menu-all {
	display: inline-flex;
	margin-top: 14px;
	color: var(--brand);
	font-weight: 900;
}

.nav-search {
	position: relative;
	width: min(190px, 18vw);
	min-width: 150px;
}

.nav-search input {
	height: 42px;
	padding: 10px 40px 10px 13px;
	border-radius: var(--radius);
	background: #fff;
}

.nav-search button {
	position: absolute;
	right: 8px;
	top: 50%;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	transform: translateY(-50%);
	cursor: pointer;
}

.nav-search button::before,
.nav-search button::after {
	content: "";
	position: absolute;
	display: block;
}

.nav-search button::before {
	left: 6px;
	top: 5px;
	width: 11px;
	height: 11px;
	border: 2px solid var(--muted);
	border-radius: 999px;
}

.nav-search button::after {
	left: 17px;
	top: 17px;
	width: 8px;
	height: 2px;
	background: var(--muted);
	transform: rotate(45deg);
	transform-origin: left center;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero-section {
	padding: 96px 0 70px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 245, 239, 1)),
		var(--bg);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
	align-items: center;
	gap: 56px;
}

.hero-copy p:not(.section-kicker) {
	max-width: 720px;
	color: #4e5b54;
	font-size: 20px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 28px 0 22px;
}

.trust-note {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: #4f5f57;
	font-size: 14px;
	font-weight: 800;
}

.trust-note span {
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
	min-height: 520px;
}

.hero-visual img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.authority-panel {
	min-height: 520px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(25, 104, 74, 0.12), rgba(38, 94, 159, 0.12)),
		#fff;
	box-shadow: var(--shadow);
}

.authority-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(220, 226, 219, 0.8);
}

.authority-header span {
	color: var(--muted);
	font-weight: 900;
}

.authority-header strong {
	padding: 9px 11px;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
}

.authority-lines {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: end;
	gap: 12px;
	height: 160px;
	margin: 30px 0;
	padding: 0 8px;
	border-bottom: 1px solid var(--line);
}

.authority-lines span {
	display: block;
	border-radius: 6px 6px 0 0;
	background: var(--brand);
}

.authority-lines span:nth-child(1) {
	height: 62%;
	background: var(--amber);
}

.authority-lines span:nth-child(2) {
	height: 82%;
	background: var(--brand);
}

.authority-lines span:nth-child(3) {
	height: 46%;
	background: var(--blue);
}

.authority-lines span:nth-child(4) {
	height: 94%;
	background: #693f8f;
}

.mini-publications {
	display: grid;
	gap: 12px;
}

.mini-publications div {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	padding: 16px;
}

.mini-publications span,
.mini-publications small {
	display: block;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.mini-publications strong {
	display: block;
	margin: 4px 0;
	line-height: 1.25;
}

.metric-band {
	background: var(--ink);
	color: #fff;
}

.metric-grid,
.dashboard-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
}

.metric-grid div {
	padding: 28px 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-grid div:first-child {
	border-left: 0;
}

.metric-grid strong,
.dashboard-metrics strong {
	display: block;
	font-size: 34px;
	line-height: 1;
}

.metric-grid span {
	color: #c8d7cf;
	font-weight: 700;
}

.resource-grid,
.publisher-grid,
.pricing-grid,
.contact-grid,
.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.resource-card,
.publisher-card,
.pricing-card,
.contact-panel,
.hub-grid article,
.guideline-box,
.submission-panel,
.publisher-scorecard,
.empty-state,
.widget,
.comments-area {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.resource-card,
.pricing-card,
.contact-panel,
.hub-grid article,
.guideline-box,
.submission-panel,
.empty-state,
.widget,
.comments-area {
	padding: 26px;
}

.resource-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: var(--radius);
	background: var(--soft-amber);
	color: var(--amber);
	font-weight: 900;
}

.resource-card:nth-child(2) .resource-icon {
	background: var(--soft-blue);
	color: var(--blue);
}

.resource-card:nth-child(3) .resource-icon {
	background: var(--surface-2);
	color: var(--brand);
}

.resource-card p,
.pricing-card p,
.hub-grid p,
.contact-panel p {
	color: var(--muted);
}

.contact-form-embed,
.contact-form-fallback {
	margin-top: 22px;
}

.contact-form-embed .ff-el-group,
.contact-form-embed .frm-fluent-form .ff-el-group {
	margin-bottom: 16px;
}

.contact-form-embed .ff-el-input--label label,
.contact-form-embed .ff-el-form-control,
.contact-form-embed .ff-el-form-check-label {
	color: var(--ink);
}

.contact-form-embed .ff-el-form-control {
	width: 100%;
	border-color: var(--line);
	border-radius: var(--radius);
	box-shadow: none;
}

.contact-form-embed .ff-btn-submit,
.contact-form-embed button[type="submit"],
.contact-form-embed input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 46px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	background: var(--brand);
	color: #fff;
	padding: 12px 18px;
	font-weight: 800;
	line-height: 1.1;
	box-shadow: 0 12px 24px rgba(25, 104, 74, 0.18);
	cursor: pointer;
}

.contact-form-embed .ff-btn-submit:hover,
.contact-form-embed .ff-btn-submit:focus-visible,
.contact-form-embed button[type="submit"]:hover,
.contact-form-embed button[type="submit"]:focus-visible,
.contact-form-embed input[type="submit"]:hover,
.contact-form-embed input[type="submit"]:focus-visible {
	background: var(--brand-strong);
	color: #fff;
}

.contact-form-fallback {
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	background: var(--surface-2);
	padding: 16px;
}

.contact-form-fallback p:last-child {
	margin-bottom: 0;
}

.contact-email-button {
	margin-top: 18px;
}

.pricing-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 18px;
}

.pricing-card-meta span {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--soft-blue);
	color: var(--blue);
	padding: 7px 10px;
	font-size: 12px;
	font-weight: 900;
}

.package-purchase-form {
	margin-top: auto;
}

.package-purchase-form .btn,
.pricing-card > .btn,
.pricing-card > .is-disabled {
	width: 100%;
	justify-content: center;
}

.is-disabled {
	pointer-events: none;
	opacity: 0.68;
}

.resource-card a,
.publisher-footer a {
	color: var(--brand);
	font-weight: 900;
}

.topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.topic-card {
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card:hover,
.topic-card:focus-visible {
	border-color: rgba(25, 104, 74, 0.45);
	color: var(--ink);
	box-shadow: 0 12px 24px rgba(24, 33, 29, 0.07);
	transform: translateY(-2px);
}

.category-image-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.category-image-card {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	min-height: 128px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.category-image-card:hover,
.category-image-card:focus-visible {
	border-color: rgba(25, 104, 74, 0.45);
	color: var(--ink);
	box-shadow: 0 14px 28px rgba(24, 33, 29, 0.08);
	transform: translateY(-2px);
}

.category-image-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 128px;
	background: linear-gradient(135deg, var(--brand), var(--blue));
	color: #fff;
	font-size: 38px;
	font-weight: 900;
}

.category-image-media img {
	width: 100%;
	height: 100%;
	min-height: 128px;
	object-fit: cover;
}

.category-image-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 18px;
}

.category-image-body span {
	font-size: 19px;
	font-weight: 900;
	line-height: 1.2;
}

.category-image-body strong {
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
}

.activity-list {
	display: grid;
	gap: 12px;
}

.activity-row {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
}

.activity-badge,
.publication-thumb,
.publisher-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--brand), var(--blue));
	color: #fff;
	font-weight: 900;
}

.activity-badge {
	width: 68px;
	height: 68px;
}

.activity-badge img,
.publisher-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eyebrow-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.topic-pill,
.label-soft {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	border-radius: 999px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
}

.topic-pill {
	background: var(--surface-2);
	color: var(--brand-strong);
}

.label-soft {
	background: var(--soft-blue);
	color: var(--blue);
}

.activity-row h3,
.publication-card h2,
.publisher-card h3 {
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.25;
}

.activity-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
}

.activity-meta span:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: #a3ada8;
}

.publisher-card {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 16px;
	padding: 18px;
}

.publisher-logo {
	width: 84px;
	height: 84px;
}

.publisher-metrics,
.publisher-scorecard {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 16px 0;
}

.publisher-metrics span,
.publisher-scorecard div,
.dashboard-metrics div {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 12px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.publisher-metrics strong,
.publisher-scorecard strong {
	display: block;
	color: var(--ink);
	font-size: 18px;
	line-height: 1.1;
}

.publisher-card p,
.entry-summary {
	color: var(--muted);
}

.publisher-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	font-weight: 900;
}

.publisher-home-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.publisher-home-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--brand), var(--blue));
	color: #fff;
	font-size: 44px;
	font-weight: 900;
}

.publisher-home-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.publisher-home-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px;
}

.publisher-home-body h3 {
	margin-bottom: 8px;
	font-size: 23px;
}

.publisher-home-body p {
	margin-bottom: 20px;
	color: var(--muted);
	font-weight: 800;
}

.publisher-home-body .btn {
	margin-top: auto;
}

.directory-hero {
	padding: 82px 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.directory-hero-inner {
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.directory-hero p:not(.section-kicker) {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	color: var(--muted);
	font-size: 19px;
}

.hub-grid article span {
	display: inline-flex;
	margin-bottom: 16px;
	color: var(--amber);
	font-weight: 900;
}

.directory-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 240px auto;
	gap: 10px;
	margin-bottom: 30px;
}

.directory-search.large-search {
	grid-template-columns: minmax(0, 1fr) auto;
}

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

.directory-grid {
	margin-top: 0;
}

.publication-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.publication-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 0;
	font-size: 42px;
}

.publication-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.publication-card-body {
	padding: 20px;
}

.publication-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 28px;
	align-items: start;
}

.archive-header {
	margin-bottom: 30px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.archive-description {
	color: var(--muted);
}

.sidebar {
	position: sticky;
	top: 128px;
	display: grid;
	gap: 16px;
}

.widget-title {
	font-size: 20px;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li + li {
	margin-top: 10px;
}

.widget a {
	font-weight: 800;
	color: #33423b;
}

.widget-cta {
	background: var(--ink);
	color: #fff;
}

.widget-cta h2,
.widget-cta p {
	color: #fff;
}

.single-article,
.narrow-article,
.publisher-single {
	max-width: 900px;
}

.single-header {
	max-width: 850px;
	margin: 0 auto 34px;
	text-align: center;
}

.single-header h1 {
	font-size: 58px;
}

.single-header .activity-meta {
	justify-content: center;
}

.single-featured {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: var(--radius);
}

.single-featured img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.entry-content {
	color: #2d3833;
	font-size: 18px;
}

.entry-content a {
	color: var(--brand);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 36px;
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 18px 22px;
	border-left: 4px solid var(--brand);
	background: var(--surface-2);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--line);
	padding: 12px;
	text-align: left;
}

.single-footer {
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.tag-list a {
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--brand-strong);
	font-weight: 900;
}

.post-navigation-wrap .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.post-navigation-wrap a {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 16px;
	font-weight: 900;
}

.single-post-page {
	background: transparent;
}

.single-post-shell {
	padding: 72px 0 104px;
}

.single-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 780px) 320px;
	align-items: start;
	gap: 42px;
	margin-top: 12px;
	margin-bottom: 34px;
}

.single-post-main {
	min-width: 0;
	background: transparent;
}

.single-post-header {
	margin-bottom: 24px;
}

.single-post-kicker-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.single-post-header h1 {
	max-width: 760px;
	margin-bottom: 12px;
	font-size: 42px;
	letter-spacing: 0;
	line-height: 1.12;
}

.single-post-meta {
	color: #52645c;
	font-size: 14px;
}

.single-post-featured {
	margin-bottom: 30px;
	border-radius: 4px;
}

.single-post-featured img {
	width: 100%;
	max-height: 460px;
	object-fit: cover;
}

.single-post-content {
	background: transparent;
	color: #25332d;
	font-size: 17px;
	line-height: 1.78;
}

.single-post-content > *:first-child {
	margin-top: 0;
}

.single-post-content p {
	margin-bottom: 20px;
}

.single-post-content h2 {
	scroll-margin-top: 128px;
	margin-top: 42px;
	margin-bottom: 14px;
	color: #111c18;
	font-size: 26px;
	line-height: 1.24;
}

.single-post-content h3 {
	margin-top: 30px;
	font-size: 22px;
}

.single-post-content ul,
.single-post-content ol {
	padding-left: 1.35rem;
}

.single-post-content li + li {
	margin-top: 8px;
}

.single-post-footer {
	margin-top: 46px;
}

.single-post-sidebar {
	position: sticky;
	top: 118px;
	display: grid;
	gap: 18px;
}

.single-sidebar-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 18px;
	box-shadow: 0 12px 30px rgba(24, 33, 29, 0.06);
}

.single-sidebar-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

.single-sidebar-title strong {
	font-size: 15px;
	line-height: 1.2;
}

.single-toc-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.45;
}

.single-toc-list li {
	border-bottom: 1px solid rgba(220, 226, 219, 0.74);
}

.single-toc-list li:last-child {
	border-bottom: 0;
}

.single-toc-list a {
	display: block;
	padding: 9px 0;
	color: #384840;
	font-weight: 800;
}

.single-toc-list a:hover,
.single-toc-list a:focus-visible {
	color: var(--brand);
}

.single-sidebar-empty {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.single-ad-card {
	overflow: hidden;
	background: linear-gradient(180deg, #fff, var(--surface-2));
	text-align: center;
}

.single-ad-card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ink);
	font-size: 20px;
	line-height: 1.15;
}

.single-ad-card p {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.single-ad-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: var(--radius);
	background: var(--brand);
	color: #fff;
	padding: 9px 13px;
	font-size: 13px;
	font-weight: 900;
}

.single-ad-card a:hover,
.single-ad-card a:focus-visible {
	background: var(--brand-strong);
	color: #fff;
}

.single-ad-card img {
	display: inline-block;
	width: 100%;
	max-height: 240px;
	margin: 8px auto 12px;
	border-radius: var(--radius);
	object-fit: cover;
}

.single-ad-card > :last-child {
	margin-bottom: 0;
}

.single-related-section {
	margin-top: 66px;
	padding-top: 34px;
	border-top: 1px dashed var(--line);
}

.single-related-section .section-heading h2 {
	font-size: 32px;
}

.page-article .entry-header {
	margin-bottom: 28px;
}

.submit-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
}

.form-grid {
	display: grid;
	gap: 14px;
}

.two-col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guest-submit-form p {
	margin-bottom: 18px;
}

.guest-submit-form small {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 700;
}

.submission-lock-field {
	position: relative;
}

.submission-lock-field.is-locked {
	border: 1px solid rgba(179, 59, 59, 0.34);
	border-radius: var(--radius);
	background: #fff7f7;
	padding: 12px;
}

.submission-lock-field.is-admin-locked {
	border-color: rgba(38, 94, 159, 0.34);
	background: #f4f8ff;
}

.submission-lock-field.is-locked input,
.submission-lock-field.is-locked select,
.submission-lock-field.is-locked textarea {
	border-color: rgba(179, 59, 59, 0.32);
	background: #fff;
	opacity: 0.68;
	cursor: not-allowed;
}

.field-lock-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #ffe3e3;
	color: var(--red);
	padding: 5px 9px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.submission-lock-field.is-admin-locked .field-lock-badge {
	background: var(--soft-blue);
	color: var(--blue);
}

.field-lock-badge::after {
	content: attr(data-tooltip);
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	width: max-content;
	max-width: 220px;
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	padding: 8px 10px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-transform: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.submission-lock-field:hover .field-lock-badge::after,
.field-lock-badge:hover::after {
	opacity: 1;
	transform: translateY(0);
}

.file-upload-field small {
	display: block;
	margin-top: 8px;
	color: var(--muted);
	font-weight: 700;
}

.submission-aside {
	position: sticky;
	top: 128px;
	display: grid;
	gap: 16px;
}

.auth-gate-panel h2 {
	font-size: 30px;
}

.submit-author-strip {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 12px;
}

.submit-author-strip img {
	border-radius: 999px;
}

.submit-author-strip strong,
.submit-author-strip span {
	display: block;
	line-height: 1.25;
}

.submit-author-strip span {
	color: var(--muted);
	font-size: 14px;
}

.submit-author-strip em {
	border-radius: 999px;
	background: var(--soft-blue);
	color: var(--blue);
	padding: 7px 10px;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.package-badge,
.submission-package-note span {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--soft-blue);
	color: var(--blue);
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 900;
}

.package-growth,
.package-badge.package-growth {
	background: #eef8f1;
	color: var(--brand-strong);
}

.package-pro,
.package-badge.package-pro {
	background: #fff4df;
	color: var(--amber);
}

.submission-package-note {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: -8px 0 22px;
}

.premium-feature-panel {
	margin: 8px 0 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 18px;
}

.premium-feature-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.premium-feature-heading h3 {
	margin-bottom: 6px;
	font-size: 22px;
}

.premium-feature-heading p {
	margin: 0;
	color: var(--muted);
}

.premium-feature-heading strong {
	display: inline-flex;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--brand-strong);
	padding: 8px 12px;
	font-size: 13px;
	white-space: nowrap;
}

.premium-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.premium-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 50px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 12px;
}

.premium-checkbox.submission-lock-field.is-locked {
	padding-right: 86px;
}

.premium-checkbox input {
	width: auto;
}

.premium-credit-preview {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 16px 0 8px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 12px 14px;
	color: var(--muted);
	font-weight: 800;
}

.premium-credit-preview strong {
	color: var(--blue);
	font-size: 18px;
}

.article-link-panel {
	margin: 8px 0 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 18px;
}

.article-link-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.article-link-heading h3 {
	margin-bottom: 6px;
	font-size: 22px;
}

.article-link-heading p {
	margin: 0;
	color: var(--muted);
}

.article-link-heading strong {
	display: inline-flex;
	border-radius: 999px;
	background: var(--surface-2);
	color: var(--brand-strong);
	padding: 8px 12px;
	font-size: 13px;
	white-space: nowrap;
}

.article-link-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.article-link-option {
	display: flex;
	position: relative;
	align-items: flex-start;
	gap: 12px;
	min-height: 86px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 14px;
}

.article-link-option input {
	width: auto;
	margin-top: 4px;
}

.article-link-option strong,
.article-link-option small {
	display: block;
}

.article-link-option small,
.article-link-note {
	color: var(--muted);
}

.article-link-note {
	margin: 14px 0 0;
	font-weight: 800;
}

.article-link-note.is-free {
	color: var(--brand);
}

.article-link-note.is-warning {
	color: var(--danger);
}

.rich-editor-field {
	margin-bottom: 20px;
}

.rich-editor-field .wp-editor-wrap {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
}

.rich-editor-field .wp-editor-tools,
.rich-editor-field .wp-editor-container {
	border: 0;
}

.notice {
	margin-bottom: 20px;
	border-radius: var(--radius);
	padding: 14px 16px;
	font-weight: 800;
}

.notice.success {
	background: var(--surface-2);
	color: var(--brand-strong);
}

.notice.error {
	background: #ffecec;
	color: var(--red);
}

.check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 12px;
	color: #3f4c46;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 14px;
	height: 8px;
	border-left: 3px solid var(--brand);
	border-bottom: 3px solid var(--brand);
	transform: rotate(-45deg);
}

.accent-box {
	background: var(--ink);
	color: #fff;
}

.accent-box span {
	display: block;
	color: #c8d7cf;
	font-weight: 800;
}

.accent-box strong {
	font-size: 38px;
	line-height: 1.1;
}

.pricing-card {
	display: flex;
	flex-direction: column;
}

.pricing-card h2 {
	font-size: 42px;
}

.pricing-card .btn {
	margin-top: auto;
}

.featured-plan {
	border-color: rgba(25, 104, 74, 0.45);
	background: linear-gradient(180deg, #ffffff, #eef8f1);
	box-shadow: var(--shadow);
}

.dashboard-shell {
	max-width: 920px;
}

.auth-page {
	background: #fff;
}

.auth-layout {
	display: flex;
	justify-content: center;
	padding: 70px 0 58px;
}

.auth-card {
	width: min(100%, 680px);
}

.auth-card h1 {
	margin-bottom: 22px;
	font-size: 54px;
}

.auth-helper-text {
	color: var(--muted);
	font-size: 17px;
}

.guesto-auth-form p {
	margin-bottom: 18px;
}

.label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.label-row a,
.auth-switch a {
	color: #075dff;
	font-weight: 800;
}

.remember-row {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	color: var(--muted);
	font-weight: 800;
}

.remember-row input {
	width: auto;
}

.auth-submit {
	width: 100%;
	background: linear-gradient(135deg, #2e91d8, #6558d3);
}

.auth-switch {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 17px;
}

.guesto-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.auth-promo-band {
	background: #f3f6fb;
	padding: 44px 0;
}

.auth-promo-card {
	width: min(920px, calc(100% - 40px));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 48px 56px;
	text-align: center;
	box-shadow: var(--shadow);
}

.auth-promo-card > span {
	display: inline-flex;
	margin-bottom: 16px;
	border-radius: 999px;
	background: var(--soft-blue);
	color: #075dff;
	padding: 7px 13px;
	font-size: 13px;
	font-weight: 900;
}

.auth-promo-card h2 {
	font-size: 34px;
}

.auth-promo-card p {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	color: var(--muted);
}

.auth-promo-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 30px 0;
}

.auth-promo-metrics strong,
.auth-promo-metrics small {
	display: block;
}

.auth-promo-metrics strong {
	font-size: 20px;
	line-height: 1.2;
}

.auth-promo-metrics small {
	color: var(--muted);
}

.dashboard-auth-layout {
	display: grid;
	grid-template-columns: minmax(0, 680px) minmax(280px, 0.7fr);
	gap: 24px;
	align-items: start;
}

.dashboard-main {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #f3f6fc;
	overflow-x: clip;
	container-type: inline-size;
}

body.page-template-template-dashboard,
body.page-template-template-dashboard-php {
	overflow-x: hidden;
}

.auth-helper-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 26px;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.auth-helper-card h2 {
	font-size: 28px;
}

.auth-helper-card p {
	color: var(--muted);
}

.user-panel {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	width: 100%;
	max-width: 100%;
	min-height: calc(100vh - 116px);
	overflow-x: hidden;
	background: #f3f6fc;
}

.user-panel-sidebar {
	background: #141927;
	color: #dce5f3;
	padding: 24px 0;
}

.user-panel-brand {
	display: block;
	padding: 0 26px 22px;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
}

.user-panel-sidebar nav {
	display: grid;
	gap: 6px;
}

.user-panel-sidebar nav strong {
	margin: 20px 30px 8px;
	color: #7e8798;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.user-panel-sidebar nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 24px;
	color: #b8c0d0;
	font-weight: 800;
}

.user-panel-sidebar nav a.is-active,
.user-panel-sidebar nav a:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.user-panel-sidebar nav span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.08);
	font-size: 12px;
}

.user-panel-main {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
	padding: 24px 32px 54px;
}

[data-dashboard-section][hidden] {
	display: none !important;
}

.user-panel-topbar {
	display: grid;
	grid-template-columns: minmax(280px, 620px) minmax(240px, 1fr);
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}

.panel-search {
	position: relative;
	min-width: 0;
}

.panel-search input {
	height: 46px;
	padding-right: 48px;
}

.panel-search button {
	position: absolute;
	right: 8px;
	top: 50%;
	width: 34px;
	height: 34px;
	border: 0;
	background: transparent;
	transform: translateY(-50%);
	cursor: pointer;
}

.panel-search button::before,
.panel-search button::after {
	content: "";
	position: absolute;
	display: block;
}

.panel-search button::before {
	left: 7px;
	top: 6px;
	width: 13px;
	height: 13px;
	border: 2px solid #0f245c;
	border-radius: 999px;
}

.panel-search button::after {
	left: 20px;
	top: 20px;
	width: 9px;
	height: 2px;
	background: #0f245c;
	transform: rotate(45deg);
	transform-origin: left center;
}

.panel-user {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 0;
}

.panel-user span {
	flex: 0 1 auto;
	min-width: 0;
	border-radius: 999px;
	background: #000;
	color: #fff;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.panel-user img {
	border-radius: 999px;
}

.panel-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	margin-bottom: 26px;
}

.panel-stats article,
.panel-card,
.panel-empty {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.05);
}

.panel-stats article {
	padding: 24px;
	text-align: center;
}

.panel-stats strong {
	display: block;
	color: #6659d9;
	font-size: 34px;
	line-height: 1;
}

.panel-stats article:nth-child(2) strong {
	color: #075dff;
}

.panel-stats article:nth-child(3) strong {
	color: #e35163;
}

.panel-stats article:nth-child(4) strong {
	color: #009b49;
}

.panel-stats article:nth-child(5) strong {
	color: var(--red);
}

.panel-stats span,
.panel-stats small {
	display: block;
}

.panel-stats span {
	margin-top: 12px;
	color: #075dff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.panel-stats small {
	color: #222b36;
	font-weight: 700;
}

.panel-promo {
	width: min(820px, 100%);
	margin: 0 auto 28px;
	border-left: 5px solid #2e91d8;
	background: linear-gradient(90deg, #eff8ff, #f5f2ff);
	padding: 18px 22px;
	text-align: center;
}

.panel-promo strong,
.panel-promo span {
	display: block;
}

.panel-promo strong {
	color: #075dff;
	font-size: 20px;
}

.panel-promo span,
.panel-promo p {
	color: var(--muted);
}

.panel-promo p {
	margin: 6px 0 0;
}

.panel-promo a {
	color: #075dff;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.panel-promo img {
	display: inline-block;
	max-height: 120px;
	margin: 8px auto 0;
	border-radius: var(--radius);
}

.panel-promo > :last-child {
	margin-bottom: 0;
}

.panel-card {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.publisher-profile-card {
	margin-bottom: 26px;
}

.credit-summary-card,
.credit-history-card,
.dashboard-packages-card {
	margin-bottom: 26px;
}

.credit-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 24px 28px;
}

.credit-summary-grid span {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 14px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.credit-summary-grid strong {
	display: block;
	color: var(--ink);
	font-size: 24px;
	line-height: 1.1;
}

.credit-history-card .panel-table-wrap {
	padding: 0 0 8px;
}

.dashboard-package-body {
	padding: 24px 28px 28px;
}

.dashboard-pricing-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.package-order-list {
	margin-top: 24px;
	border-top: 1px solid var(--line);
	padding-top: 22px;
}

.package-order-list h3 {
	margin-bottom: 12px;
	font-size: 20px;
}

.status-approved {
	background: var(--surface-2);
	color: var(--brand-strong);
}

.status-rejected {
	background: #ffecec;
	color: var(--red);
}

.status-submitted,
.status-verified {
	background: var(--surface-2);
	color: var(--brand-strong);
}

.status-not_submitted {
	background: var(--soft-blue);
	color: var(--blue);
}

.button-reset {
	border: 0;
	background: transparent;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

body.payment-modal-open {
	overflow: hidden;
}

.payment-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.payment-modal.is-open {
	display: flex;
}

.payment-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 25, 39, 0.64);
}

.payment-modal-panel {
	position: relative;
	z-index: 1;
	width: min(680px, 100%);
	max-height: min(760px, calc(100vh - 40px));
	overflow-y: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 28px;
	box-shadow: var(--shadow);
}

.payment-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	color: var(--ink);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.payment-modal-panel h3 {
	margin: 8px 44px 16px 0;
	font-size: 28px;
}

.payment-order-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.payment-order-summary span,
.payment-instructions {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 14px;
}

.payment-order-summary strong {
	display: block;
	color: var(--ink);
	font-size: 22px;
}

.payment-instructions {
	margin-bottom: 18px;
	color: var(--muted);
}

.payment-instructions p:last-child {
	margin-bottom: 0;
}

.payment-ticket-form p {
	margin-bottom: 14px;
}

@container (max-width: 920px) {
	.user-panel {
		grid-template-columns: 1fr;
	}

	.user-panel-sidebar {
		position: static;
		padding: 18px 0;
	}

	.user-panel-brand {
		padding-bottom: 14px;
		font-size: 22px;
	}

	.user-panel-sidebar nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2px 10px;
		padding: 0 18px;
	}

	.user-panel-sidebar nav strong {
		grid-column: 1 / -1;
		margin: 12px 0 4px;
	}

	.user-panel-sidebar nav a {
		padding: 10px 0;
	}

	.user-panel-main {
		padding: 22px 16px 42px;
	}

	.user-panel-topbar,
	.panel-stats,
	.publisher-profile-summary,
	.credit-summary-grid {
		grid-template-columns: 1fr;
	}

	.panel-card-header,
	.panel-card-actions,
	.panel-user {
		align-items: stretch;
		flex-direction: column;
	}

	.panel-user {
		justify-content: flex-start;
	}
}

@container (max-width: 620px) {
	.user-panel-sidebar nav,
	.publisher-scorecard,
	.dashboard-metrics,
	.package-feature-list,
	.credit-summary-grid,
	.payment-order-summary {
		grid-template-columns: 1fr;
	}
}

.publisher-profile-form {
	padding: 26px 28px 28px;
}

.publisher-profile-summary {
	display: grid;
	grid-template-columns: 86px minmax(180px, 1fr) minmax(260px, 1.2fr);
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
}

.profile-image-preview {
	width: 86px;
	height: 86px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--soft-blue);
}

.profile-image-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.publisher-profile-summary strong,
.publisher-profile-summary span {
	display: block;
}

.publisher-profile-summary > div:nth-child(2) > strong {
	font-size: 20px;
	line-height: 1.2;
}

.publisher-profile-summary > div:nth-child(2) > span {
	color: var(--muted);
	font-weight: 800;
}

.package-feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 10px;
}

.package-feature-list span {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fbfcfb;
	padding: 12px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.package-feature-list strong {
	color: var(--ink);
	font-size: 19px;
}

.panel-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border-bottom: 1px solid var(--line);
}

.panel-card-header > div:first-child {
	flex: 1 1 auto;
	min-width: 0;
}

.panel-card-header h2 {
	margin-bottom: 10px;
	font-size: 28px;
}

.panel-card-header p {
	margin: 0;
	color: var(--muted);
}

.panel-card-actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.panel-card-actions select {
	min-width: 180px;
}

.panel-table-wrap {
	max-width: 100%;
	overflow-x: auto;
}

.panel-table {
	width: 100%;
	border-collapse: collapse;
}

.panel-table th,
.panel-table td {
	border-bottom: 1px solid var(--line);
	padding: 16px 18px;
	text-align: left;
	vertical-align: middle;
}

.panel-table th {
	color: var(--muted);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.panel-table td strong,
.panel-table td small {
	display: block;
}

.panel-table td small,
.muted-text {
	color: var(--muted);
}

.status-pill {
	display: inline-flex;
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 900;
}

.status-publish {
	background: var(--surface-2);
	color: var(--brand-strong);
	padding: 20px;
}

.status-pending {
	background: var(--soft-amber);
	color: var(--amber);
}

.status-draft {
	background: var(--soft-blue);
	color: var(--blue);
}

.status-add,
.status-deduct {
	background: var(--surface-2);
	color: var(--brand-strong);
}

.status-reserve {
	background: var(--soft-amber);
	color: var(--amber);
}

.status-refund {
	background: var(--soft-blue);
	color: var(--blue);
}

.table-link {
	color: #075dff;
	font-weight: 900;
}

.panel-empty {
	margin: 28px;
	padding: 32px;
	text-align: center;
}

.dashboard-metrics {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 24px;
}

.dashboard-metrics div {
	background: #fff;
}

.dashboard-metrics span {
	color: var(--muted);
	font-weight: 800;
}

.publisher-single {
	max-width: 1040px;
}

.publisher-single-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: center;
	margin-bottom: 34px;
}

.publisher-single-header p {
	color: var(--muted);
	font-size: 19px;
}

.publisher-scorecard {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 18px;
}

.publisher-scorecard div {
	background: #fff;
}

.publisher-guidelines {
	margin-top: 34px;
}

.publisher-profile-page {
	background: #fff;
}

.publisher-breadcrumb-wrap {
	background: #fff;
	border-bottom: 1px solid rgba(220, 226, 219, 0.72);
}

.publisher-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 50px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 800;
}

.publisher-breadcrumb a {
	color: #33423b;
}

.publisher-breadcrumb strong {
	color: #9aa4a0;
	font-weight: 800;
}

.publisher-breadcrumb span {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #9aa4a0;
	border-bottom: 1.5px solid #9aa4a0;
	transform: rotate(-45deg);
}

.publisher-profile-hero {
	padding: 76px 0 58px;
	background: linear-gradient(180deg, var(--soft-blue) 0%, #fff 86%);
}

.publisher-profile-card-large {
	position: relative;
	margin-top: 62px;
	padding: 112px 44px 36px;
	border: 1px solid rgba(220, 226, 219, 0.72);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 22px 52px rgba(24, 33, 29, 0.08);
	text-align: center;
}

.publisher-profile-avatar {
	position: absolute;
	left: 50%;
	top: -74px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 148px;
	height: 148px;
	overflow: hidden;
	border: 7px solid rgba(231, 240, 255, 0.95);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--brand), var(--blue));
	color: #fff;
	font-size: 54px;
	font-weight: 900;
	transform: translateX(-50%);
	box-shadow: 0 18px 34px rgba(24, 33, 29, 0.14);
}

.publisher-profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.publisher-profile-card-large h1 {
	margin-bottom: 10px;
	font-size: 42px;
}

.publisher-profile-bio {
	max-width: 880px;
	margin: 0 auto 24px;
	color: var(--muted);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
}

.publisher-profile-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.publisher-profile-stats li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	padding: 6px 14px;
	color: #27362f;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.publisher-profile-stats span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--soft-blue);
	color: var(--blue);
	font-size: 10px;
	font-weight: 900;
}

.publisher-profile-links {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}

.publisher-profile-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #f4f6f8;
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.03em;
}

.publisher-profile-icon-link:hover,
.publisher-profile-icon-link:focus-visible {
	background: var(--surface-2);
	color: var(--brand);
}

.publisher-profile-cta {
	margin-top: 24px;
	border-color: #ddd7ee;
	border-radius: 999px;
	padding-left: 24px;
	padding-right: 24px;
	color: var(--ink);
}

.publisher-work-section {
	padding: 0 0 86px;
	background: #fff;
}

.publisher-work-heading {
	margin-bottom: 18px;
}

.publisher-work-heading .section-kicker {
	color: var(--blue);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
}

.publisher-work-heading h2 {
	font-size: 30px;
}

.publisher-topic-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 24px;
}

.publisher-topic-tab {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: #fff;
	padding: 6px 14px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.publisher-topic-tab.is-active,
.publisher-topic-tab:hover,
.publisher-topic-tab:focus-visible {
	border-color: transparent;
	background: var(--soft-blue);
	color: var(--blue);
}

.publisher-work-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.publisher-work-card {
	display: grid;
	grid-template-columns: minmax(170px, 224px) minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	min-height: 176px;
	border: 1px solid rgba(220, 226, 219, 0.62);
	border-radius: var(--radius);
	background: #fff;
	padding: 20px;
	box-shadow: 0 10px 28px rgba(24, 33, 29, 0.04);
}

.publisher-work-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--brand), var(--blue));
	color: #fff;
	font-size: 42px;
	font-weight: 900;
}

.publisher-work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.publisher-work-body .topic-pill {
	margin-bottom: 12px;
	border: 1px solid #ddd7ee;
	background: #fff;
	color: var(--muted);
	font-size: 14px;
}

.publisher-work-body h3 {
	margin-bottom: 12px;
	font-size: 19px;
	line-height: 1.35;
}

.publisher-work-meta a {
	color: var(--blue);
}

.contact-grid {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.author-header {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
}

.author-header img {
	border-radius: var(--radius);
}

.empty-state {
	text-align: center;
}

.not-found {
	max-width: 760px;
}

.not-found .directory-search {
	margin: 24px 0;
}

.pagination-wrap,
.nav-links,
.page-links {
	margin-top: 30px;
}

.load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.guesto-load-more[disabled] {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.pagination,
.pagination .nav-links,
.pagination-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	padding: 8px 12px;
	font-weight: 900;
}

.page-numbers.current {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

.comments-area {
	width: min(900px, calc(100% - 40px));
	margin: 42px auto 0;
}

.comment-list {
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.comment-list li {
	margin-top: 18px;
}

.comment-body {
	border-bottom: 1px solid var(--line);
	padding-bottom: 18px;
}

.comment-form {
	display: grid;
	gap: 14px;
}

.comment-form p {
	margin: 0;
}

.form-submit .submit {
	width: auto;
	border: 0;
	border-radius: var(--radius);
	background: var(--brand);
	color: #fff;
	padding: 13px 18px;
	font-weight: 900;
	cursor: pointer;
}

.site-footer {
	background: var(--ink);
	color: #d8e3dc;
}

.guesto-builder-content,
.guesto-elementor-full-width,
.guesto-elementor-canvas {
	width: 100%;
	max-width: none;
	padding: 0;
}

.guesto-builder-content .elementor-section-wrap,
.guesto-builder-content .elementor {
	width: 100%;
}

.guesto-canvas-template {
	background: #fff;
}

.guesto-shortcode {
	width: 100%;
}

.shortcode-metrics {
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
	overflow: hidden;
}

.footer-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 48px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
	margin: 0;
	color: #fff;
}

.footer-cta .section-kicker {
	color: #b8f0d4;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 1fr));
	gap: 32px;
	padding: 52px 0;
}

.footer-brand p {
	max-width: 430px;
	color: #c0cbc5;
}

.footer-logo .brand-mark {
	background: #fff;
	color: var(--brand);
}

.footer-logo strong {
	color: #fff;
}

.footer-logo small {
	color: #c0cbc5;
}

.site-footer h2,
.footer-widget-title {
	margin-bottom: 14px;
	color: #fff;
	font-size: 17px;
}

.footer-links,
.footer-bottom-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li + li {
	margin-top: 9px;
}

.footer-links a,
.footer-bottom a {
	color: #d8e3dc;
}

.footer-links a:hover,
.footer-bottom a:hover {
	color: #b8f0d4;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #aebcb4;
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.wp-block-image,
.wp-caption {
	max-width: 100%;
}

.alignwide {
	margin-left: calc((100% - min(var(--max), calc(100vw - 40px))) / -2);
	margin-right: calc((100% - min(var(--max), calc(100vw - 40px))) / -2);
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

@media (max-width: 1120px) {
	.site-navigation {
		gap: 12px;
	}

	.primary-menu {
		gap: 12px;
	}

	.nav-search {
		display: none;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual,
	.authority-panel,
	.hero-visual img {
		min-height: 420px;
		height: auto;
	}

	.single-post-layout {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 30px;
	}
}

@media (max-width: 900px) {
	.container {
		width: min(var(--max), calc(100% - 28px));
	}

	.top-strip-inner {
		justify-content: center;
		text-align: center;
	}

	.top-strip a {
		display: none;
	}

	.menu-toggle {
		display: inline-block;
	}

	.nav-shell {
		position: relative;
		min-height: 70px;
	}

	.site-navigation {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(100% + 8px);
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: #fff;
		padding: 16px;
		box-shadow: var(--shadow);
	}

	.site-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu a,
	.nav-dropdown-toggle {
		display: block;
		width: 100%;
		padding: 12px 0;
	}

	.mega-menu {
		position: static;
		width: 100%;
		padding: 12px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}

	.nav-dropdown.is-open .mega-menu {
		display: block;
	}

	.nav-search {
		display: block;
		width: 100%;
	}

	.nav-cta {
		width: 100%;
	}

	.hero-section {
		padding: 66px 0 48px;
	}

	h1 {
		font-size: 50px;
	}

	h2,
	.single-header h1,
	.single-post-header h1 {
		font-size: 36px;
	}

	.metric-grid,
	.resource-grid,
	.publisher-grid,
	.pricing-grid,
	.hub-grid,
	.topic-grid,
	.category-image-grid,
	.auth-promo-metrics,
	.dashboard-auth-layout,
	.user-panel,
	.user-panel-topbar,
	.panel-stats,
	.publisher-profile-summary,
	.credit-summary-grid,
	.publication-grid,
	.publisher-work-grid,
	.content-layout,
	.submit-layout,
	.publisher-single-header,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.metric-grid div {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.metric-grid div:first-child {
		border-top: 0;
	}

	.split-heading,
	.footer-cta,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-post-layout {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 24px;
	}

	.sidebar,
	.submission-aside {
		position: static;
	}

	.directory-search,
	.directory-search.large-search,
	.two-col,
	.premium-feature-grid,
	.article-link-options {
		grid-template-columns: 1fr;
	}

	.publisher-scorecard,
	.dashboard-metrics,
	.package-feature-list,
	.credit-summary-grid,
	.payment-order-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.user-panel-sidebar {
		position: static;
	}

	.user-panel-main {
		padding: 22px 16px 42px;
	}

	.panel-card-header,
	.panel-card-actions,
	.panel-user {
		align-items: stretch;
		flex-direction: column;
	}

	.panel-user {
		justify-content: flex-start;
	}

	.home-publication-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.publisher-profile-card-large {
		padding-left: 28px;
		padding-right: 28px;
	}
}

@media (max-width: 760px) {
	.single-post-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.single-post-sidebar {
		position: static;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 38px;
	}

	.payment-modal {
		align-items: stretch;
		padding: 12px;
	}

	.payment-modal-panel {
		max-height: calc(100vh - 24px);
		padding: 22px;
	}

	.payment-order-summary {
		grid-template-columns: 1fr;
	}

	h2,
	.single-header h1,
	.single-post-header h1 {
		font-size: 28px;
	}

	.section-block {
		padding: 56px 0;
	}

	.single-post-shell {
		padding: 42px 0 64px;
	}

	.directory-hero {
		padding: 58px 0;
	}

	.hero-copy p:not(.section-kicker),
	.directory-hero p:not(.section-kicker),
	.single-post-content,
	.entry-content {
		font-size: 16px;
	}

	.single-post-content h2 {
		font-size: 23px;
	}

	.single-sidebar-card {
		padding: 16px;
	}

	.single-related-section {
		margin-top: 46px;
	}

	.hero-actions,
	.trust-note,
	.premium-feature-heading,
	.article-link-heading {
		flex-direction: column;
		align-items: stretch;
	}

	.btn,
	.trust-note span {
		width: 100%;
	}

	.hero-visual,
	.authority-panel {
		min-height: 0;
	}

	.authority-lines {
		height: 120px;
	}

	.mega-menu-grid {
		grid-template-columns: 1fr;
	}

	.activity-row,
	.publisher-card,
	.author-header,
	.category-image-card {
		grid-template-columns: 1fr;
	}

	.activity-badge,
	.publisher-logo {
		width: 58px;
		height: 58px;
	}

	.category-image-media,
	.category-image-media img {
		min-height: 168px;
	}

	.publisher-metrics,
	.publisher-scorecard,
	.publisher-work-card,
	.home-publication-grid,
	.dashboard-metrics,
	.credit-summary-grid,
	.auth-promo-metrics,
	.panel-stats,
	.post-navigation-wrap .nav-links {
		grid-template-columns: 1fr;
	}

	.auth-layout {
		padding: 48px 0;
	}

	.auth-card h1 {
		font-size: 38px;
	}

	.auth-promo-card {
		width: min(100%, calc(100% - 28px));
		padding: 30px 20px;
	}

	.submit-author-strip {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.submit-author-strip em {
		grid-column: 1 / -1;
	}

	.panel-card-header {
		padding: 20px;
	}

	.publisher-profile-form {
		padding: 20px;
	}

	.package-feature-list {
		grid-template-columns: 1fr;
	}

	.publisher-breadcrumb {
		overflow-x: auto;
		white-space: nowrap;
	}

	.publisher-profile-hero {
		padding-top: 54px;
	}

	.publisher-profile-card-large {
		margin-top: 52px;
		padding: 84px 20px 28px;
	}

	.publisher-profile-card-large h1 {
		font-size: 32px;
	}

	.publisher-profile-avatar {
		top: -58px;
		width: 116px;
		height: 116px;
		font-size: 42px;
	}

	.publisher-profile-stats li {
		width: 100%;
		justify-content: flex-start;
	}

	.publisher-profile-icon-link {
		width: 44px;
		height: 44px;
	}

	.publisher-work-heading h2 {
		font-size: 26px;
	}

	.publisher-work-card {
		align-items: stretch;
		gap: 16px;
		padding: 16px;
	}

	.panel-empty {
		margin: 20px;
	}
}
