:root {
	--ff-canvas: #f5f7fb;
	--ff-surface: #ffffff;
	--ff-surface-soft: #eef2f8;
	--ff-ink: #172033;
	--ff-muted: #5d6677;
	--ff-line: #dfe4ee;
	--ff-brand: #2847c7;
	--ff-brand-dark: #1d3493;
	--ff-brand-soft: #eaf0ff;
	--ff-green: #14603a;
	--ff-green-soft: #e6f6ed;
	--ff-amber: #754600;
	--ff-amber-soft: #fff1d2;
	--ff-radius-sm: 10px;
	--ff-radius: 16px;
	--ff-radius-lg: 24px;
	--ff-shadow: 0 14px 40px rgba(23, 32, 51, 0.07);
	--ff-content: 760px;
	--ff-wide: 1180px;
}

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	background: var(--ff-canvas);
	color: var(--ff-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
	font-size: 16px;
	line-height: 1.75;
	overflow-wrap: anywhere;
}

a {
	color: var(--ff-brand);
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--ff-brand-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

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

.grid-container {
	max-width: 1240px;
}

.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--ff-line);
}

.inside-header {
	padding: 20px clamp(20px, 4vw, 40px);
}

.site-branding .main-title,
.site-branding .site-description {
	margin: 0;
}

.site-branding .main-title {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -0.025em;
}

.site-branding .main-title a {
	color: var(--ff-ink);
}

.site-branding .site-description {
	color: var(--ff-muted);
	font-size: 0.82rem;
}

.site-logo img {
	max-height: 44px;
	width: auto;
}

.main-navigation,
.main-navigation ul ul {
	background: var(--ff-surface);
}

.main-navigation .main-nav ul li a,
.main-navigation .menu-toggle,
.main-navigation .menu-bar-item > a {
	display: flex;
	align-items: center;
	min-height: 44px;
	color: var(--ff-ink);
	font-size: 0.95rem;
	font-weight: 650;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus-within > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
	background: transparent;
	color: var(--ff-brand);
}

.site-content {
	padding: clamp(18px, 3vw, 36px);
}

.home .site-content {
	padding-top: 0;
}

.home .site-main,
.home.separate-containers .site-main {
	margin: 0;
}

.content-area,
.site-main,
.ff-home,
.ff-card-grid > li,
.ff-topic-grid > li {
	min-width: 0;
}

.ff-home {
	width: 100%;
}

.ff-container {
	width: min(100%, var(--ff-wide));
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 44px);
}

.ff-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 12%, rgba(40, 71, 199, 0.15), transparent 32%),
		linear-gradient(135deg, #ffffff 0%, #eef3ff 100%);
	border: 1px solid #d8e1ff;
	border-radius: 0 0 var(--ff-radius-lg) var(--ff-radius-lg);
}

.ff-hero::after {
	position: absolute;
	right: -72px;
	bottom: -118px;
	width: 280px;
	height: 280px;
	background: rgba(40, 71, 199, 0.07);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ff-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(72px, 11vw, 132px);
}

.ff-eyebrow,
.ff-section__kicker {
	margin: 0 0 12px;
	color: var(--ff-brand);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ff-hero__title {
	max-width: 850px;
	margin: 0;
	color: var(--ff-ink);
	font-size: clamp(2.35rem, 6vw, 4.75rem);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 1.08;
}

.ff-hero__title span {
	color: var(--ff-brand);
}

.ff-hero__description {
	max-width: 650px;
	margin: clamp(24px, 4vw, 34px) 0 0;
	color: #475267;
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.75;
}

.ff-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 30px;
	padding: 12px 22px;
	background: var(--ff-brand);
	border: 1px solid var(--ff-brand);
	border-radius: var(--ff-radius-sm);
	color: #ffffff;
	font-weight: 750;
	line-height: 1.25;
	text-decoration: none;
}

.ff-button:hover,
.wp-block-button__link:hover {
	background: var(--ff-brand-dark);
	border-color: var(--ff-brand-dark);
	color: #ffffff;
}

.ff-section {
	padding-block: clamp(64px, 9vw, 108px);
}

.ff-section + .ff-section {
	border-top: 1px solid rgba(223, 228, 238, 0.75);
}

.ff-section--soft {
	background: var(--ff-surface-soft);
	border-radius: var(--ff-radius-lg);
}

.ff-section--analysis {
	background: #18213a;
	border-radius: var(--ff-radius-lg) var(--ff-radius-lg) 0 0;
	color: #dce4f5;
}

.ff-section--analysis h2,
.ff-section--analysis .ff-section__kicker,
.ff-section--analysis .ff-text-link {
	color: #ffffff;
}

.ff-section--analysis .ff-section__header > p {
	color: #bac5dd;
}

.ff-section__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
	gap: 24px 50px;
	align-items: end;
	margin-bottom: clamp(30px, 5vw, 48px);
}

.ff-section__header--inline {
	grid-template-columns: minmax(0, 1fr) auto;
}

.ff-section__header h2,
.ff-related h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.ff-section__header > p {
	margin: 0;
	color: var(--ff-muted);
}

.ff-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-weight: 750;
	text-decoration: none;
}

.ff-card-grid,
.ff-topic-grid {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ff-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 28px);
}

.ff-card-grid > li {
	display: flex;
}

.ff-card {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--ff-surface);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-radius);
	box-shadow: none;
}

.ff-card:hover,
.ff-card:focus-within {
	border-color: #aebce8;
	box-shadow: var(--ff-shadow);
}

.ff-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--ff-surface-soft);
}

.ff-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ff-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(20px, 3vw, 28px);
}

.ff-card__title {
	margin: 18px 0 0;
	font-size: clamp(1.15rem, 2vw, 1.42rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.38;
}

.ff-card__title a {
	color: var(--ff-ink);
	text-decoration: none;
}

.ff-card__title a:hover {
	color: var(--ff-brand);
}

.ff-card__excerpt {
	display: -webkit-box;
	margin: 14px 0 0;
	overflow: hidden;
	color: var(--ff-muted);
	font-size: 0.95rem;
	line-height: 1.68;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ff-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	align-items: center;
	margin-top: auto;
	padding-top: 22px;
	color: var(--ff-muted);
	font-size: 0.82rem;
}

.ff-card__category {
	color: var(--ff-brand-dark);
	font-weight: 700;
	text-decoration: none;
}

.ff-card__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: 8px;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
}

.ff-status-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
}

.ff-card .ff-status-list {
	margin-top: 0;
}

.ff-status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 750;
	line-height: 1.3;
}

.ff-status--global {
	background: var(--ff-brand-soft);
	border-color: #cdd9ff;
	color: #263f9e;
}

.ff-status--korea {
	background: var(--ff-green-soft);
	border-color: #bfe8d1;
	color: var(--ff-green);
}

.ff-status--verdict {
	background: var(--ff-amber-soft);
	border-color: #f2d99c;
	color: var(--ff-amber);
}

.ff-data-card {
	position: relative;
}

/* Keep repeated data rows aligned when Korean titles wrap differently. */
.ff-data-card .ff-card__title {
	min-height: 2.76em;
}

.ff-data-card .ff-card__excerpt {
	min-height: 3.36em;
}

.ff-data-rank {
	background: #eef2ff;
	border-color: #cdd9ff;
	color: #263f9e;
}

.ff-data-status {
	background: #f2f4f8;
	border-color: #d7dce6;
	color: #495469;
}

.ff-data-observation {
	background: #ffffff;
	border-color: #d7dce6;
	color: #495469;
}

.ff-data-status--surging {
	background: #fff2e8;
	border-color: #ffcda8;
	color: #a74708;
}

.ff-data-status--growing {
	background: var(--ff-green-soft);
	border-color: #bfe8d1;
	color: var(--ff-green);
}

.ff-data-status--steady {
	background: var(--ff-brand-soft);
	border-color: #cdd9ff;
	color: #263f9e;
}

.ff-data-status--cooling {
	background: #f4f1fb;
	border-color: #d9cfee;
	color: #654d8c;
}

.ff-data-card__reason {
	min-height: calc(3.1em + 24px);
	margin: 16px 0 0;
	padding: 12px 14px;
	background: #f8faff;
	border-left: 3px solid var(--ff-brand);
	border-radius: 0 10px 10px 0;
	color: var(--ff-muted);
	font-size: 0.82rem;
	line-height: 1.55;
}

.ff-data-card__reason strong {
	color: var(--ff-ink);
}

.ff-data-card__metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 0;
}

.ff-data-card__metrics > div {
	min-width: 0;
	padding: 14px;
	background: var(--ff-surface-soft);
	border: 1px solid var(--ff-line);
	border-radius: 12px;
}

.ff-data-card__metrics dt {
	color: var(--ff-muted);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
}

.ff-data-card__metrics dd {
	margin: 4px 0 0;
	color: var(--ff-ink);
	font-size: 1.2rem;
	font-weight: 850;
	line-height: 1.2;
}

.ff-data-card__meta {
	justify-content: space-between;
}

.ff-data-card__confidence {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 12px 0 0;
}

.ff-data-card__confidence span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 9px;
	background: #fff;
	border: 1px solid var(--ff-line);
	border-radius: 999px;
	color: var(--ff-muted);
	font-size: 0.72rem;
	font-weight: 700;
}

.ff-data-card__pending {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: 8px;
	color: var(--ff-muted);
	font-size: 0.88rem;
	font-weight: 750;
}

.ff-data-note {
	max-width: 760px;
	margin: 18px 0 0;
	color: var(--ff-muted);
	font-size: 0.78rem;
	line-height: 1.6;
}

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

.ff-topic-card {
	display: flex;
	min-height: 132px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	background: var(--ff-surface);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-radius);
	color: var(--ff-ink);
	text-decoration: none;
}

.ff-topic-card:hover,
.ff-topic-card:focus-visible {
	border-color: #aebce8;
	color: var(--ff-brand);
}

.ff-topic-card__name {
	font-size: 1.1rem;
	font-weight: 800;
}

.ff-topic-card__count {
	color: var(--ff-muted);
	font-size: 0.78rem;
}

.ff-empty-state {
	margin: 0;
	padding: clamp(28px, 5vw, 46px);
	background: rgba(255, 255, 255, 0.7);
	border: 1px dashed #bdc7d8;
	border-radius: var(--ff-radius);
	color: var(--ff-muted);
	text-align: center;
}

/* Standard page and article reading experience. */
.single-post .site-content,
.page:not(.home) .site-content {
	max-width: 1040px;
	margin-inline: auto;
}

.single-post .inside-article,
.page:not(.home) .inside-article {
	padding: clamp(28px, 6vw, 72px);
	background: var(--ff-surface);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-radius-lg);
}

.single-post .entry-header,
.single-post .entry-content,
.single-post .inside-article > .ff-status-list,
.page:not(.home) .entry-header,
.page:not(.home) .entry-content {
	max-width: var(--ff-content);
	margin-inline: auto;
}

.single-post .entry-title,
.page:not(.home) .entry-title {
	margin-bottom: 18px;
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1.16;
}

.single-post .entry-meta,
.page:not(.home) .entry-meta {
	color: var(--ff-muted);
	font-size: 0.85rem;
}

.entry-content {
	color: #283247;
	font-size: clamp(1rem, 1.5vw, 1.075rem);
	line-height: 1.86;
}

.entry-content > * + * {
	margin-top: 1.45em;
}

.entry-content h2 {
	margin-top: clamp(2.8rem, 7vw, 4.8rem);
	margin-bottom: 1rem;
	font-size: clamp(1.55rem, 3.2vw, 2.05rem);
	font-weight: 820;
	letter-spacing: -0.035em;
	line-height: 1.3;
}

.entry-content h3 {
	margin-top: 2.5rem;
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 780;
}

.entry-content p {
	margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
	padding-inline-start: 1.4em;
}

.entry-content li + li {
	margin-top: 0.55em;
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 18px 22px;
	background: var(--ff-brand-soft);
	border: 0;
	border-inline-start: 4px solid var(--ff-brand);
	border-radius: 0 var(--ff-radius-sm) var(--ff-radius-sm) 0;
}

.ff-summary-card {
	margin-block: clamp(30px, 6vw, 54px);
	padding: clamp(22px, 4vw, 34px);
	background: #f8faff;
	border: 1px solid #d7e0fb;
	border-radius: var(--ff-radius);
}

.ff-summary-card h2 {
	margin-top: 0;
}

.ff-article-data {
	max-width: var(--ff-content);
	margin: 32px auto 46px;
	padding: clamp(22px, 4vw, 32px);
	background: linear-gradient(145deg, #f8faff 0%, #eef3ff 100%);
	border: 1px solid #ccd8f8;
	border-radius: var(--ff-radius);
}

.ff-article-data__header {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	justify-content: space-between;
}

.ff-article-data__kicker {
	margin: 0 0 6px;
	color: var(--ff-brand);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ff-article-data h2 {
	margin: 0;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 830;
	letter-spacing: -0.035em;
}

.ff-article-data__header time {
	flex: 0 0 auto;
	color: var(--ff-muted);
	font-size: 0.78rem;
}

.ff-article-data__summary {
	margin: 18px 0 0;
	color: #34405a;
}

.ff-article-data__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 22px 0 0;
}

.ff-article-data__metrics > div {
	min-width: 0;
	padding: 13px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--ff-line);
	border-radius: 11px;
}

.ff-article-data__metrics dt {
	color: var(--ff-muted);
	font-size: 0.72rem;
	font-weight: 720;
}

.ff-article-data__metrics dd {
	margin: 5px 0 0;
	color: var(--ff-ink);
	font-size: 1.05rem;
	font-weight: 850;
	line-height: 1.3;
}

.ff-article-data__reason {
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid #d6def3;
	color: var(--ff-muted);
	font-size: 0.86rem;
}

.ff-article-data__reason strong {
	color: var(--ff-ink);
}

.ff-article-history {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid #d6def3;
}

.ff-article-history__header {
	display: flex;
	gap: 16px;
	align-items: baseline;
	justify-content: space-between;
}

.ff-article-history__header h3,
.ff-article-history__header p {
	margin: 0;
}

.ff-article-history__header h3 {
	font-size: 1rem;
	font-weight: 820;
}

.ff-article-history__header p {
	color: var(--ff-muted);
	font-size: 0.76rem;
}

.ff-article-history__table {
	max-width: 100%;
	margin-top: 14px;
	overflow-x: auto;
	border: 1px solid var(--ff-line);
	border-radius: 11px;
	-webkit-overflow-scrolling: touch;
}

.ff-article-history__table:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

.ff-article-history table {
	width: 100%;
	min-width: 610px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	font-size: 0.78rem;
}

.ff-article-history th,
.ff-article-history td {
	padding: 10px 12px;
	border: 0;
	border-bottom: 1px solid var(--ff-line);
	text-align: left;
	white-space: nowrap;
}

.ff-article-history thead th {
	background: #f8faff;
	color: var(--ff-muted);
	font-size: 0.7rem;
	font-weight: 760;
}

.ff-article-history tbody th {
	background: #ffffff;
	color: var(--ff-ink);
	font-weight: 760;
}

.ff-article-history tbody tr:last-child th,
.ff-article-history tbody tr:last-child td {
	border-bottom: 0;
}

.ff-article-data__note {
	margin: 12px 0 0;
	color: var(--ff-muted);
	font-size: 0.74rem;
	line-height: 1.55;
}

.wp-block-table,
.ff-overview-table {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.wp-block-table table,
.ff-overview-table table {
	width: 100%;
	min-width: 520px;
	margin: 0;
	border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td,
.ff-overview-table th,
.ff-overview-table td {
	padding: 13px 15px;
	border: 1px solid var(--ff-line);
	text-align: start;
	vertical-align: top;
}

.wp-block-table thead th,
.ff-overview-table thead th {
	background: #edf2ff;
	color: var(--ff-ink);
	font-weight: 800;
}

.ff-related {
	margin-top: clamp(54px, 9vw, 90px);
	padding-top: clamp(34px, 6vw, 54px);
	border-top: 1px solid var(--ff-line);
}

.ff-related h2 {
	margin-bottom: 28px;
}

.ff-related .ff-card__excerpt,
.ff-related .ff-card__meta {
	display: none;
}

/* GeneratePress archive markup becomes a lightweight card grid. */
.archive .site-main,
.search .site-main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.archive .site-main > .page-header,
.archive .site-main > .paging-navigation,
.archive .site-main > .no-results,
.search .site-main > .page-header,
.search .site-main > .paging-navigation,
.search .site-main > .no-results {
	grid-column: 1 / -1;
}

.archive .site-main > article,
.search .site-main > article {
	margin: 0;
}

.archive .site-main > article .inside-article,
.search .site-main > article .inside-article {
	display: flex;
	height: 100%;
	flex-direction: column;
	padding: 26px;
	background: var(--ff-surface);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-radius);
}

.archive .entry-title,
.search .entry-title {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.4;
}

.archive .entry-title a,
.search .entry-title a {
	color: var(--ff-ink);
}

.archive .entry-summary,
.search .entry-summary {
	color: var(--ff-muted);
	font-size: 0.95rem;
}

.archive .page-header,
.search .page-header {
	padding: clamp(28px, 5vw, 46px);
	background: var(--ff-surface);
	border: 1px solid var(--ff-line);
	border-radius: var(--ff-radius);
}

.archive .page-title,
.search .page-title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 820;
	letter-spacing: -0.04em;
}

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

.site-info {
	background: transparent;
	color: #ced6e7;
}

.inside-site-info {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: space-between;
	padding: 28px clamp(20px, 4vw, 40px);
	font-size: 0.88rem;
}

.ff-footer__description {
	color: #9eabc3;
}

@media (max-width: 1024px) {
	.ff-card-grid,
	.archive .site-main,
	.search .site-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ff-topic-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.site-content {
		padding: 14px;
	}

	.home .site-content {
		padding-top: 0;
	}

	.inside-header {
		padding: 14px 18px;
	}

	.menu-toggle {
		min-height: 46px;
	}

	.ff-hero {
		border-radius: 0 0 var(--ff-radius) var(--ff-radius);
	}

	.ff-hero__inner {
		padding-block: 64px 72px;
	}

	.ff-hero__title {
		font-size: clamp(2.2rem, 11vw, 3.4rem);
	}

	.ff-section__header,
	.ff-section__header--inline {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.ff-card-grid,
	.archive .site-main,
	.search .site-main {
		grid-template-columns: minmax(0, 1fr);
	}

	.ff-data-card .ff-card__title,
	.ff-data-card .ff-card__excerpt,
	.ff-data-card__reason {
		min-height: 0;
	}

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

	.single-post .inside-article,
	.page:not(.home) .inside-article {
		padding: 26px 20px;
		border-radius: var(--ff-radius);
	}

	.single-post .entry-title,
	.page:not(.home) .entry-title {
		font-size: clamp(1.8rem, 9vw, 2.7rem);
	}

	.ff-related .ff-card__excerpt {
		display: -webkit-box;
	}

	.ff-article-data__header {
		flex-direction: column;
	}

	.ff-article-history__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ff-article-data__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.inside-site-info {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.ff-container {
		padding-inline: 18px;
	}

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

	.ff-topic-card {
		min-height: 108px;
	}

	.ff-card__body {
		padding: 22px 20px;
	}

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

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
