/* =========================================================
   Foundation
   ========================================================= */

/* Fonts */
/* Passion One 400 */
@font-face{
  font-family:"Passion One";
  src:
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Regular.woff2") format("woff2"),
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Regular.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

/* Passion One 700 */
@font-face{
  font-family:"Passion One";
  src:
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Bold.woff2") format("woff2"),
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Bold.ttf") format("truetype");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

/* Passion One 900 */
@font-face{
  font-family:"Passion One";
  src:
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Black.woff2") format("woff2"),
    url("/prd/wp/wp-content/themes/olive-chicken-cafe/assets/fonts/PassionOne-Black.ttf") format("truetype");
  font-weight:900;
  font-style:normal;
  font-display:swap;
}

/* Theme Tokens */
:root {
	--primary-red: #cb2329;
	--text-dark: #333;
	--text-dark2: #272727;
	--text-gray: #888;
	--bg-light: #f8f9fa;
}

/* =========================================================
   Layout & Utilities
   ========================================================= */

.container {
	max-width: 1140px;
	margin: 0 auto;
}
.container--narrow {
	max-width: 800px;
}
.container--wide {
	max-width: 1400px;
}
.container--full {
	max-width: none;
	width: 100%;
}
.container--fluid {
	max-width: none;
	width: 100%;
	padding: 0;
}

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

.section-header {
	margin-bottom: 20px;
}
.section-header--right {
	text-align: right;
}
.section-header--center {
	text-align: center;
}
.section-header--right + .section-body > p {
	text-align: right;
}
.section-header--center + .section-body > p {
	text-align: center;
}

.section-body {
	line-height: 1.8;
}

/* =========================================================
   Typography
   ========================================================= */

.section-title {
	font-family: "Passion One", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.section-title__main {
	display: block;
	color: var(--primary-red);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}
.section-title__sub {
	display: block;
	font-size: 72px;
	color: var(--text-dark);
	font-weight: 700;
	line-height: 0.88;
	text-wrap-mode: nowrap;
	letter-spacing: 3px;
}

/* Special title (5年後の夢) */
.section-title--special {
	font-family: "noto sans jp", sans-serif;
}
.section-title--special .section-title__main {
	color: var(--primary-red);
	font-weight: 900;
	font-size: 3.5rem;
	margin-bottom: 60px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.btn-primary {
	background: var(--primary-red);
	color: #fff;
	border: 3px solid var(--primary-red);
}
.btn-primary:hover {
	background: #fff;
	color: var(--primary-red);
}

/* =========================================================
   Components
   ========================================================= */

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background: var(--text-dark);
	color: #fff;
	height: 31.25svw;
	text-align: center;
}
.hero-content {
	font-family: "Passion One", sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	height: 100%;
	contain-intrinsic-block-size: auto 100px;
}
.hero-image {
	position: absolute;
	top: 0;
	width: 100svw;
	height: 100%;
}
.hero-image img {
	width: 100%;
	height: auto;
}
.hero-text {
	position: relative;
	z-index: 10;
}
.hero-title__main {
	display: block;
	font-size: 48px;
}
.hero-title__sub {
	color: var(--primary-red);
	font-size: 48px;
	font-weight: bold;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.hero-title__main {
		font-size: 32px;
	}
	.hero-title__sub {
		font-size: 32px;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	/* heightはコメントアウトのまま踏襲 */
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.hero {
		height: 50svw;
	}
	.hero-image img {
		height: 100%;
		object-fit: cover;
	}
}

/* ---------- Introduction ---------- */
.introduction {
	position: relative;
	padding: 60px 0;
}
.introduction .container:before {
	position: absolute;
	left: 0;
	z-index: -1;
	content: "";
	display: block;
	width: 45svw;
	height: 420px;
	background: #cb2329;
}
.introduction-layout {
	display: flex;
	align-items: flex-start;
}
.introduction-image,
.introduction-content {
	flex: 1;
}
.introduction-image img {
	width: 100%;
	height: auto;
	transform: translate(-5%, -10%) scale(1.1);
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.introduction-layout {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
		text-align: center;
	}
	.introduction .container:before {
		width: 100%;
		height: 30svw;
	}
	.introduction-image img {
		width: 420px;
		transform: translate(0, 0) scale(1);
		margin-bottom: -5svw;
	}
}

/* ≤575.98px */
@media (max-width: 575.98px) {
	.introduction-layout {
		gap: 0;
	}
	.introduction .container:before {
		width: 100%;
		height: 50svw;
	}
	.introduction-image img {
		transform: translate(-20%, -30%) scale(1);
		margin-bottom: -30%;
	}
}

/* ---------- History ---------- */
.history {
	padding: 0 0 60px;
}
.history-images {
	display: flex;
	gap: 2rem;
	margin: 3rem 0;
}
.history-images figure {
	flex: 1;
	margin: 0;
}
.history-images img {
	width: 100%;
	object-fit: cover;
}

/* ---------- Timeline ---------- */
.timeline {
	display: flex;
	justify-content: flex-start;
	gap: 85px;
	margin: 3rem 0;
}
.timeline-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: fit-content;
}
.timeline-item {
	display: flex;
	flex-direction: column;
}
.timeline-year {
	font-family: "Passion One";
	font-weight: bold;
	color: var(--text-dark);
	font-size: 30px;
	line-height: 1.2;
}
.timeline-event {
	font-size: 16px;
	line-height: 1.4;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.timeline {
		flex-wrap: wrap;
		gap: 40px;
		justify-content: center;
	}
	.timeline-column {
		width: calc(50% - 20px);
	}
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.timeline-column {
		width: 100%;
	}
	.timeline-year,
	.timeline-event {
		text-align: center;
	}
	.stat-item {
		justify-content: center;
	}
}

/* ---------- Statistics ---------- */
.statistics {
	display: flex;
	gap: 4rem;
	justify-content: center;
	margin-top: 3rem;
	padding: 50px 100px;
	background: #ffe2e2;
	border-radius: 10px;
	color: var(--primary-red);
}
.stat-item {
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: center;
}
.stat-number {
	font-family: "Passion One";
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 120px;
	font-weight: 500;
	line-height: 1;
}
.stat-plus {
	color: var(--primary-red);
}
.stat-label {
	display: block;
	font-size: 30px;
	font-weight: 700;
	margin-top: 0.5rem;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.statistics {
		padding: 40px 50px;
	}
	.stat-number {
		font-size: 80px;
	}
	.stat-label {
		font-size: 24px;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.statistics {
		flex-direction: column;
		gap: 2rem;
		padding: 30px;
	}
	.stat-number {
		font-size: 70px;
	}
}

/* ---------- Recipe Branding ---------- */
.recipe-branding {
	position: relative;
	padding: 5rem 0;
}
.recipe-branding .container:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #cb2329 75%, #fff 75%, #fff 100%);
}
.recipe-layout {
	display: flex;
	gap: 3rem;
	align-items: flex-end;
	margin-bottom: 3rem;
}
.recipe-title,
.recipe-content {
	flex: 1;
}
.recipe-title .section-title__main {
	color: var(--text-dark2);
}
.recipe-title .section-title__sub {
	color: #fff;
}
.recipe-content .section-body p {
	color: #fff;
}

.recipe-gallery {
	display: flex;
	gap: 20px;
	margin: 0 -100px;
}
.recipe-image {
	flex: 1;
	margin: 0;
}
.recipe-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/4;
	object-fit: cover;
}

/* ≤1199.98px */
@media (max-width: 1199.98px) {
	.recipe-gallery {
		margin: 0 -50px;
	}
}
/* ≤991.98px */
@media (max-width: 991.98px) {
	.recipe-layout {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
		text-align: center;
		margin-bottom: 1em;
	}
	.recipe-branding .container:before {
		background: linear-gradient(180deg, #cb2329 75%, #fff 75%, #fff 100%);
	}
	.recipe-gallery {
		width: 50%;
		flex-wrap: nowrap;
		margin: 0 auto;
		justify-content: center;
	}
	.recipe-image {
		flex: 0 0 calc(50% - 10px);
	}
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.recipe-branding {
		padding: 3rem 0;
	}
	.recipe-layout {
		gap: 1rem;
	}
	.recipe-gallery {
		width: 25svw;
	}
	.recipe-image {
		flex: 0 0 100%;
	}
}

/* ---------- Product Commitment ---------- */
.product-commitment {
	padding: 5rem 0;
	background: var(--bg-light);
}
.commitment-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 60px;
}
.commitment-item h3 {
	text-align: center;
}
.commitment-image {
	margin: 0 0 1.5rem 0;
}
.commitment-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.commitment-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: bold;
}
.commitment-description {
	line-height: 1.6;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.commitment-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.product-commitment {
		padding: 3rem 0;
	}
	.commitment-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Support ---------- */
.support {
	padding: 5rem 0;
	background: #faf8f5;
}
.support-layout {
	display: flex;
	gap: 4rem;
	align-items: flex-start;
}
.support-message {
	flex: 1;
}
.support-signature {
	color: var(--primary-red);
	margin-top: 2rem;
	font-weight: bold;
	padding-top: 1rem;
}
.support-services {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 600px;
}
.service-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}
.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.service-icon img {
	width: 120px;
	height: 120px;
}
.service-name {
	font-size: 0.9rem;
	font-weight: bold;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.support-layout {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
		text-align: center;
	}
	.support .section-title--special .section-title__main {
		font-size: 3rem;
		text-align: center;
	}
	.support-services {
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
		max-width: 100%;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.support-services {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.support {
		padding: 3rem 0;
	}
	.support-message {
		text-align: left;
	}
	.support-services {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 0;
		justify-items: center;
	}
}

/* ---------- CTA (common) ---------- */
.cta {
	max-width: calc(100% - 40px);
	width: 100%;
	margin: 0 auto 80px;
	padding: 80px 0;
	text-align: center;
	background-image: url(../images/franchise/cta-bgimage@2x.webp);
	background-size: cover;
	border-radius: 10px;
}
.cta-title {
	display: block;
	width: fit-content;
	margin: 0 auto 20px;
	padding: 21px 155px;
	color: var(--primary-red);
	font-size: 24px;
	font-weight: bold;
	border-radius: 4px;
	background: #fff;
}
.cta-title:hover {
	color: var(--primary-red);
	text-decoration: none;
	filter: brightness(0.9);
}
.cta-description {
	margin-bottom: 0;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
}
.cta-phone {
	display: inline-block;
	font-family: "Passion One", sans-serif;
	font-size: 56px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 0;
}
.cta-phone:hover {
	color: #fff;
	text-decoration: none;
}

/* ≤767.98px */
@media (max-width: 767.98px) {
	.cta {
		padding: 40px 20px;
		margin: 0 auto 40px;
	}
	.cta-title {
		font-size: 18px;
		padding: 15px 30px;
	}
	.cta-phone {
		font-size: 36px;
	}
}

/* Final CTA modifiers */
.cta--final {
	background: var(--primary-red);
	color: #fff;
}
.cta--final .cta-title {
	color: #fff;
}
.cta--final .btn-primary {
	background: #fff;
	color: var(--primary-red);
	border-color: #fff;
}
.cta--final .btn-primary:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

/* ---------- Marketing Support ---------- */
.marketing-support {
	padding: 60px 0 0;
}
.marketing-layout {
	display: flex;
	align-items: end;
}
.marketing-image,
.marketing-content {
	flex: 1;
}
.marketing-image img {
	width: 100%;
	height: auto;
}

.marketing-stats {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	margin-top: 2rem;
}
.marketing-campaigns {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	margin-bottom: 2rem;
	color: var(--primary-red);
}
.campaign-number {
	margin-bottom: 30px;
	font-family: "Passion One", sans-serif;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
}
.campaign-plus {
	line-height: 1;
}
.campaign-label {
	font-size: 1.2rem;
	font-weight: 700;
}
.social-icons {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.social-icon {
	width: 40px;
	height: 40px;
}

.marketing-metrics {
	max-width: 320px;
	margin-bottom: 60px;
	color: var(--primary-red);
}
.metric-item {
	margin-bottom: 2rem;
	text-align: right;
}
.metric-label {
	font-size: 1.125rem;
	font-weight: bold;
}
.metric-number {
	font-family: "Passion One", sans-serif;
	font-size: 5rem;
	font-weight: bolder;
	line-height: 1;
}
.metric-note {
	font-size: 0.875rem;
	color: var(--text-gray);
	font-weight: 500;
	text-align: right;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.marketing-layout {
		position: relative;
		align-items: center;
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}
	.marketing-image {
		position: absolute;
		bottom: 0;
		left: 30px;
		z-index: -1;
		max-width: 190px;
	}
	.marketing-content {
		order: -1;
	}
	.marketing-stats {
		justify-content: center;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.marketing-stats {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	.metric-item,
	.metric-note {
		text-align: center;
	}
	.marketing-metrics {
		margin-bottom: 0;
	}
}

@media (max-width: 575.98px) {
	.marketing-campaigns {
		align-items: center;
	}
	.marketing-image {
		filter: blur(3px);
		left: -10%;
	}
	.metric-number {
		font-size: 4rem;
	}
}

/* ---------- Store Models ---------- */
.store-models {
	padding: 120px 0 5rem;
	background: var(--bg-light);
}
.models-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 40px;
}
.model-item h3,
.model-item span {
	text-align: center;
}
.model-image {
	margin: 0 0 1.5rem 0;
}
.model-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}
.model-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	font-weight: bold;
}
.model-size {
	display: block;
	font-size: 18px;
	color: var(--primary-red);
	font-weight: bold;
	margin-bottom: 1rem;
}
.model-description {
	line-height: 1.6;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.store-models {
		padding: 80px 0 5rem;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.models-grid {
		grid-template-columns: 1fr;
	}
}

/* ≤575.98px */
@media (max-width: 575.98px) {
	.store-models {
		padding: 60px 0 3rem;
	}
	.models-grid {
		gap: 2rem;
	}
}

/* ---------- Opening Process ---------- */
.opening-process {
	padding: 5rem 0;
}
.process-section {
	margin-top: 60px;
}
.process-title {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	font-weight: bold;
}
.process-steps,
.opening-steps {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 2.5rem;
}
.process-step,
.opening-step {
	position: relative;
	display: block;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 20px 30px;
	background: #faf8f5;
	min-height: 120px;
}
.process-step:not(:last-child)::after,
.opening-step:not(:last-child)::after {
	content: "▶";
	position: absolute;
	top: 50%;
	right: -2rem;
	color: var(--primary-red);
	font-size: 0.8rem;
	font-weight: bold;
	transform: translateY(-50%);
}
.step-text {
	text-orientation: mixed;
	font-size: 16px;
	font-weight: bold;
}
.process-step--final,
.opening-step--final {
	background: var(--primary-red);
	color: #fff;
	border-color: var(--primary-red);
}
.opening-step--final {
	font-family: "Passion One", sans-serif;
	writing-mode: initial;
	display: flex;
	align-items: center;
}
.opening-step--final .step-text {
	display: block;
	width: 1em;
	font-size: 32px;
	text-align: center;
	line-height: 0.8;
	word-break: break-all;
	overflow-wrap: anywhere;
}

/* ≤991.98px */
@media (max-width: 991.98px) {
	.process-steps,
	.opening-steps {
		flex-wrap: wrap;
		justify-content: center;
	}
	.process-step,
	.opening-step {
		writing-mode: horizontal-tb;
		text-orientation: initial;
		min-height: auto;
		padding: 15px 20px;
		flex-grow: 1;
	}
	.process-step:not(:last-child)::after,
	.opening-step:not(:last-child)::after {
		writing-mode: horizontal-tb;
		transform: none;
		position: static;
		margin: 0 0 0 10px;
	}
	.opening-step--final {
		writing-mode: horizontal-tb;
	}
	.opening-step--final .step-text {
		width: auto;
		font-size: 24px;
	}
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.opening-process {
		padding: 3rem 0;
	}
	.process-step,
	.opening-step {
		width: 100%;
		padding: 10px 20px;
		text-align: center;
	}
	.opening-step--final .step-text {
		margin: 0 auto;
	}
	.process-step:not(:last-child)::after,
	.opening-step:not(:last-child)::after {
		content: "▼";
		position: absolute;
		top: 100%;
		right: 50%;
		transform: translate(50%, -20%);
		display: block;
		margin: 10px auto 0;
	}
}

/* ---------- Financials ---------- */
.financials {
	padding: 5rem 0;
}
.financials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
	margin-top: 60px;
}
.financials-column {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.financial-item {
	display: flex;
	gap: 0.5rem;
	padding: 30px 0;
	border-top: 1px solid #eee;
	width: 100%;
	align-items: flex-start;
}
.financial-label {
	display: block;
	width: 200px;
	font-size: 1.125rem;
	font-weight: 600;
	color: #cb2329;
	text-align: left;
	margin-bottom: 0.5rem;
}
.financial-value {
	display: block;
	width: 300px;
	font-size: 1.25rem;
	text-align: center;
	line-height: 1.2;
}
.financial-value strong {
	font-family: "Passion One", sans-serif;
	font-weight: 700;
	color: var(--text-dark2);
	font-size: 40px;
	margin: 0 5px;
	letter-spacing: 0.5px;
}
.financial-note {
	display: block;
	font-size: 0.875rem;
	color: #888;
	font-weight: normal;
}
.financial-item--left-align .financial-value .financial-note {
	display: block;
	margin: 0 0 5px;
	text-align: left;
}
.financials-disclaimer {
	grid-column: 1 / -1;
	margin-top: 0;
	padding-top: 30px;
	text-align: center;
	font-size: 18px;
	color: var(--text-dark2);
	font-weight: 600;
	border-top: 1px solid #eee;
}

/* ≤1199.98px */
@media (max-width: 1199.98px) {
	.container {
		max-width: 960px;
	}
	.financials-grid {
		gap: 40px;
	}
	.financial-item {
		justify-content: center;
	}
}
/* ≤991.98px */
@media (max-width: 991.98px) {
	.container {
		max-width: 720px;
		padding: 0 20px;
	}
	.section-title__sub {
		font-size: 56px;
	}
	.financials-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.financials-disclaimer {
		margin-top: 20px;
	}
}
/* ≤767.98px */
@media (max-width: 767.98px) {
	.container {
		padding: 0 15px;
	}
	.section-title__main {
		font-size: 20px;
	}
	.section-title__sub {
		font-size: 42px;
		letter-spacing: 1px;
	}
	.section-title--special .section-title__main {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.financial-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0.5rem;
		padding: 20px 0;
	}
	.financial-label,
	.financial-value {
		width: 100%;
		text-align: center;
	}
	.financial-item--left-align .financial-value .financial-note {
		text-align: center;
	}
}
/* ≤575.98px */
@media (max-width: 575.98px) {
	.financials {
		padding: 3rem 0;
	}
	.section-title__sub {
		font-size: 36px;
	}
	.financials-grid {
		gap: 0;
		margin-top: 30px;
	}
	.financial-item {
		gap: 0;
		padding: 15px 0;
	}
	.financial-label {
		margin-bottom: 0;
		font-size: 14px;
	}
	.financial-value {
		font-size: 18px;
	}
	.financial-value strong {
		font-size: 30px;
	}
}

/* =========================================================
   Minor Adjustments for Specific Blocks (kept from original)
   ========================================================= */

/* History / Marketing etc. keep as above; small device tweaks already colocated */
