/**
 * Region Bond City（リーボン）- サイトスタイル
 * カラー: 自然系のグリーン + アースカラー
 */

:root {
	--rbc-primary: #1a3a2a;
	--rbc-secondary: #2d6a4f;
	--rbc-accent: #52b788;
	--rbc-surface: #ffffff;
	--rbc-surface-alt: #f0f7f4;
	--rbc-text: #2C2C2C;
	--rbc-text-light: #7A7A7A;
	--rbc-border: #d8e8df;
	--rbc-font-serif: 'Noto Serif JP', 'Georgia', 'Times New Roman', serif;
	--rbc-font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== Base ===== */
body {
	font-family: var(--rbc-font-serif);
	color: var(--rbc-text);
	letter-spacing: 0.04em;
	-webkit-font-smoothing: antialiased;
}

/* ===== RBC Header ===== */
.rbc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--rbc-border);
}

.rbc-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--wp--preset--spacing--30, 1.5rem);
}

.rbc-header__logo-img {
	width: 56px;
	height: 56px;
}

.rbc-header__logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--rbc-primary);
}

.rbc-header__logo-link:hover {
	opacity: 0.8;
}

.rbc-header__site-name {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--rbc-primary);
}

/* Desktop Nav */
.rbc-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}

.rbc-nav__link {
	font-family: var(--rbc-font-sans);
	font-size: 0.875rem;
	color: var(--rbc-text);
	text-decoration: none;
	padding: 0.5rem 1rem;
	letter-spacing: 0.06em;
	transition: color 0.3s ease;
}

.rbc-nav__link:hover {
	color: var(--rbc-secondary);
}

/* Hamburger Button */
.rbc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 200;
}

.rbc-hamburger__line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--rbc-primary);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.rbc-hamburger.is-active .rbc-hamburger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.rbc-hamburger.is-active .rbc-hamburger__line:nth-child(2) {
	opacity: 0;
}

.rbc-hamburger.is-active .rbc-hamburger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.rbc-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--rbc-surface);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rbc-mobile-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.rbc-mobile-overlay__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--rbc-border);
	min-height: 70px;
}

.rbc-mobile-overlay__close {
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--rbc-text);
	cursor: pointer;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.rbc-mobile-overlay__nav {
	display: flex;
	flex-direction: column;
	padding: 1rem 0;
}

.rbc-mobile-overlay__nav a {
	font-family: var(--rbc-font-sans);
	font-size: 1.1rem;
	color: var(--rbc-text);
	text-decoration: none;
	padding: 1.2rem 2rem;
	border-bottom: 1px solid var(--rbc-border);
	transition: background 0.2s ease, color 0.2s ease;
	letter-spacing: 0.06em;
}

.rbc-mobile-overlay__nav a:hover {
	background: var(--rbc-surface-alt);
	color: var(--rbc-secondary);
}

@media (max-width: 768px) {
	.rbc-nav {
		display: none;
	}

	.rbc-hamburger {
		display: flex;
	}

	.rbc-header__inner {
		min-height: 60px;
	}

	.rbc-header__logo-img {
		width: 40px;
		height: 40px;
	}

	.rbc-header__site-name {
		font-size: 0.8rem;
	}
}

/* ===== RBC Hero ===== */
.rbc-hero {
	background: var(--rbc-primary);
	background-image: url('/wp-content/themes/rbc-site/assets/img/hero-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
	text-align: center;
	padding: 6rem 2rem;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.rbc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 58, 42, 0.65);
	z-index: 0;
}

.rbc-hero > * {
	position: relative;
	z-index: 1;
}

.rbc-hero__logo {
	margin-bottom: 1.25rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.rbc-hero__logo img {
	display: block;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.rbc-hero__catchcopy {
	max-width: 820px;
	font-size: 2.65rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.06em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	color: #ffffff !important;
}

.rbc-hero__catchcopy-line {
	display: block;
}

.rbc-page {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.rbc-hero {
	margin-top: 0 !important;
}

.wp-site-blocks > * + * {
	margin-block-start: 0;
}

@media (max-width: 960px) {
	.rbc-hero__catchcopy {
		font-size: 2.2rem;
	}
}

/* ===== RBC Sections ===== */
.rbc-section {
	padding: 4rem 0;
}

.rbc-section--alt {
	background: var(--rbc-surface-alt);
}

.rbc-section__title {
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 600;
	color: var(--rbc-primary);
	text-align: center;
	margin-bottom: 2.5rem;
	letter-spacing: 0.06em;
}

/* ===== RBC Info Table ===== */
.rbc-info {
	max-width: 600px;
	margin: 0 auto;
}

.rbc-info__row {
	display: flex;
	gap: 2rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--rbc-border);
	align-items: baseline;
}

.rbc-info__label {
	font-family: var(--rbc-font-sans);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--rbc-text-light);
	min-width: 100px;
	flex-shrink: 0;
}

.rbc-info__value {
	font-size: 0.95rem;
}

/* ===== Vision / MVV ===== */
.rbc-vision {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem 0;
}

.rbc-vision__text {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 600;
	line-height: 1.8;
	color: var(--rbc-primary);
}

.rbc-mvv {
	max-width: 650px;
	margin: 0 auto;
}

.rbc-mvv__item {
	text-align: center;
	padding: 2rem 0;
	border-bottom: 1px solid var(--rbc-border);
}

.rbc-mvv__item:last-child {
	border-bottom: none;
}

.rbc-mvv__goal {
	text-align: center;
	padding: 2.5rem 0 1rem;
	border-top: 2px solid var(--rbc-secondary);
	margin-top: 1rem;
}

.rbc-mvv__label {
	font-family: var(--rbc-font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--rbc-secondary);
	margin-bottom: 0.75rem;
}

.rbc-mvv__text {
	font-family: var(--rbc-font-serif);
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	font-weight: 600;
	line-height: 1.8;
	color: var(--rbc-primary);
	margin: 0;
}

/* ===== Member Cards ===== */
.rbc-members {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 1rem 0 2rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.rbc-members::-webkit-scrollbar {
	display: none;
}

.rbc-member-card {
	flex: 0 0 180px;
	scroll-snap-align: start;
	background: var(--rbc-surface);
	border: 1px solid var(--rbc-border);
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rbc-member-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.rbc-member-card__photo {
	width: 100%;
	aspect-ratio: 1;
	background: var(--rbc-surface-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.rbc-member-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* ===== Member Modal ===== */
.rbc-member-modal {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	max-width: 100vw;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rbc-member-modal[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}

.rbc-member-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.rbc-member-modal__dialog {
	position: relative;
	background: var(--rbc-surface);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
	max-width: 640px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.rbc-member-modal[aria-hidden="false"] .rbc-member-modal__dialog {
	transform: translateY(0);
}

.rbc-member-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--rbc-text-light);
	cursor: pointer;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.3s ease, color 0.3s ease;
	z-index: 1;
}

.rbc-member-modal__close:hover {
	background: var(--rbc-surface-alt);
	color: var(--rbc-text);
}

.rbc-member-modal__content {
	display: flex;
	gap: 2rem;
	padding: 2.5rem;
}

.rbc-member-modal__photo {
	flex: 0 0 200px;
	width: 200px;
	height: 200px;
	border-radius: 4px;
	background: var(--rbc-surface-alt);
	overflow: hidden;
}

.rbc-member-modal__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rbc-member-modal__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.rbc-member-modal__name {
	font-family: var(--rbc-font-serif);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--rbc-primary);
	margin: 0 0 1rem;
	letter-spacing: 0.04em;
}

.rbc-member-modal__bio {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--rbc-text);
	margin: 0;
}

@media (max-width: 767px) {
	.rbc-member-card {
		flex: 0 0 140px;
	}

	.rbc-timeline__item {
		display: block;
	}

	.rbc-timeline__date {
		display: block;
		width: auto;
		border-right: none;
		border-bottom: 1px solid var(--rbc-border);
	}

	.rbc-timeline__title {
		display: block;
	}

	.rbc-member-modal__content {
		flex-direction: column;
		align-items: center;
		padding: 2rem 1.5rem;
		text-align: center;
	}

	.rbc-member-modal__photo {
		flex: 0 0 150px;
		width: 150px;
		height: 150px;
	}
}

/* ===== Event Feature ===== */
.rbc-event {
	background: var(--rbc-surface);
	border: 1px solid var(--rbc-border);
	border-radius: 4px;
	padding: 2.5rem;
	max-width: 700px;
	margin: 0 auto;
}

.rbc-event__title {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--rbc-primary);
	margin-bottom: 1rem;
}

.rbc-event__meta {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 2;
	color: var(--rbc-text);
}

.rbc-event__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	color: var(--rbc-secondary);
	text-decoration: none;
	border-bottom: 1px solid var(--rbc-secondary);
	padding-bottom: 0.15rem;
	transition: color 0.3s ease;
}

.rbc-event__link:hover {
	color: var(--rbc-accent);
	border-color: var(--rbc-accent);
}

/* ===== Activity Photos ===== */
.rbc-activity-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 980px;
	margin: 0 auto 2.5rem;
}

.rbc-activity-gallery__item {
	background: var(--rbc-surface);
	border: 1px solid var(--rbc-border);
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rbc-activity-gallery__item--portrait {
	aspect-ratio: 3 / 4;
}

.rbc-activity-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	background: var(--rbc-surface-alt);
}

/* ===== Activity Timeline ===== */
.rbc-timeline {
	max-width: 860px;
	margin: 2rem auto 0;
	list-style: none;
	padding: 0;
	border: 1px solid var(--rbc-border);
	background: var(--rbc-surface);
}

.rbc-timeline__item {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--rbc-border);
	align-items: stretch;
}

.rbc-timeline__date {
	display: block;
	font-family: var(--rbc-font-sans);
	font-size: 0.85rem;
	color: var(--rbc-text-light);
	white-space: nowrap;
	padding: 1rem 1.25rem;
	background: var(--rbc-surface-alt);
	border-right: 1px solid var(--rbc-border);
	text-align: left;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.03em;
	flex: 0 0 240px;
}

.rbc-timeline__title {
	display: block;
	font-size: 0.95rem;
	padding: 1rem 1.25rem;
	line-height: 1.75;
	flex: 1 1 auto;
}

/* ===== RBC Footer ===== */
.rbc-footer a {
	color: #F9F6F2;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.rbc-footer a:hover {
	opacity: 0.7;
}

.rbc-footer__list {
	list-style: none;
	padding: 0;
}

/* ===== News List ===== */
.rbc-news-list {
	list-style: none;
	padding: 0;
}

.rbc-news-item {
	display: flex;
	gap: 1.5rem;
	align-items: baseline;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--rbc-border);
	transition: background 0.3s ease;
}

.rbc-news-item:hover {
	background: var(--rbc-surface-alt);
	padding-left: 0.5rem;
}

.rbc-news-item__date {
	font-family: var(--rbc-font-sans);
	font-size: 0.85rem;
	color: var(--rbc-text-light);
	letter-spacing: 0.05em;
	white-space: nowrap;
	min-width: 100px;
}

.rbc-news-item__title {
	font-size: 0.95rem;
}

.rbc-news-item__title a {
	color: var(--rbc-text);
	text-decoration: none;
}

.rbc-news-item__title a:hover {
	color: var(--rbc-secondary);
}

/* ===== Breadcrumb ===== */
.rbc-breadcrumb {
	font-family: var(--rbc-font-sans);
	font-size: 0.8rem;
	padding: 0.75rem var(--wp--preset--spacing--30, 1.5rem);
	background: var(--rbc-surface-alt);
	border-bottom: 1px solid var(--rbc-border);
}

.rbc-breadcrumb__list {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.rbc-breadcrumb__item {
	color: var(--rbc-text-light);
}

.rbc-breadcrumb__item a {
	color: var(--rbc-secondary);
	text-decoration: none;
}

.rbc-breadcrumb__item a:hover {
	text-decoration: underline;
}

.rbc-breadcrumb__item + .rbc-breadcrumb__item::before {
	content: '>';
	margin-right: 0.25rem;
	color: var(--rbc-text-light);
}

.rbc-breadcrumb__item--current {
	color: var(--rbc-text);
}

/* ===== Page Hero ===== */
.rbc-page-hero {
	text-align: center;
	border-bottom: 1px solid var(--rbc-border);
}

.rbc-page-hero__title {
	font-family: var(--rbc-font-serif);
	font-weight: 600;
	color: var(--rbc-primary);
	letter-spacing: 0.08em;
}

.rbc-page-hero__subtitle {
	font-family: var(--rbc-font-sans);
	color: var(--rbc-text-light);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-top: 0.25rem;
}

/* ===== About Page Lead ===== */
.rbc-about-lead {
	font-family: var(--rbc-font-sans);
	font-size: 0.95rem;
	line-height: 2;
	color: var(--rbc-text);
	max-width: 650px;
	margin: 0 auto;
}

.rbc-about-lead p {
	margin-bottom: 1.5rem;
}

/* ===== Members Page - Grid Layout ===== */
.rbc-members-lead {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--rbc-text-light);
	text-align: center;
	margin-bottom: 2.5rem;
}

.rbc-members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 2rem;
	justify-items: center;
}

.rbc-member-card-full {
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.rbc-member-card-full:hover {
	transform: translateY(-4px);
}

.rbc-member-card-full__photo {
	width: 180px;
	height: 220px;
	border-radius: 4px;
	background: var(--rbc-surface-alt);
	border: 1px solid var(--rbc-border);
	margin: 0 auto 1rem;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.rbc-member-card-full:hover .rbc-member-card-full__photo {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.rbc-member-card-full__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.rbc-member-card-full__name {
	font-family: var(--rbc-font-serif);
	font-size: 1rem;
	font-weight: 600;
	color: var(--rbc-primary);
	margin-bottom: 0.25rem;
}

.rbc-member-card-full__role {
	font-family: var(--rbc-font-sans);
	font-size: 0.8rem;
	color: var(--rbc-text-light);
}

/* ===== Recruit Section ===== */
.rbc-recruit {
	max-width: 550px;
	margin: 0 auto;
}

.rbc-recruit__text {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--rbc-text);
}

.rbc-recruit__text a {
	color: var(--rbc-secondary);
}

.rbc-recruit__list {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 2;
	color: var(--rbc-text);
	padding-left: 1.5rem;
}

/* ===== Vision Page - MVV Extended ===== */
.rbc-mvv--page .rbc-mvv__item {
	padding: 2.5rem 0;
}

.rbc-mvv__desc {
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--rbc-text-light);
	max-width: 550px;
	margin: 1rem auto 0;
}

.rbc-mvv__goal--page {
	border-top: none;
	margin-top: 0;
	padding: 0;
}

/* ===== Approach Grid ===== */
.rbc-approach {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.rbc-approach__item {
	background: var(--rbc-surface);
	border: 1px solid var(--rbc-border);
	border-radius: 6px;
	padding: 2rem;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

.rbc-approach__item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.rbc-approach__icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.rbc-approach__title {
	font-family: var(--rbc-font-serif);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rbc-primary);
	margin: 0 0 0.75rem;
}

.rbc-approach__desc {
	font-family: var(--rbc-font-sans);
	font-size: 0.85rem;
	line-height: 1.8;
	color: var(--rbc-text-light);
	margin: 0;
}

/* ===== News Page ===== */
.rbc-pagination {
	margin-top: 2rem;
	font-family: var(--rbc-font-sans);
	font-size: 0.9rem;
}

.rbc-pagination a {
	color: var(--rbc-secondary);
	text-decoration: none;
}

.rbc-no-results {
	text-align: center;
	font-family: var(--rbc-font-sans);
	color: var(--rbc-text-light);
	padding: 3rem 0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
	.rbc-hero {
		padding: 4rem 1.5rem;
		min-height: 50vh;
	}

	.rbc-hero__catchcopy {
		font-size: 1.75rem;
		line-height: 1.55;
	}

	.rbc-event {
		padding: 1.5rem;
	}

	.rbc-activity-gallery {
		grid-template-columns: 1fr;
		max-width: 420px;
	}

	.rbc-info__row {
		flex-direction: column;
		gap: 0.25rem;
	}

	.rbc-timeline__item {
		flex-direction: column;
		gap: 0.25rem;
	}

	.rbc-members-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.rbc-member-card-full__photo {
		width: 140px;
		height: 180px;
	}

	.rbc-approach {
		grid-template-columns: 1fr;
	}

	.rbc-news-item {
		flex-direction: column;
		gap: 0.25rem;
	}
}
