/*
 * Components styles
 * IE Zukuri Content Theme
 */

/* --------------------------------
 * Buttons / shared links
 * -------------------------------- */
.read-more,
.front-section-more__link,
.front-hero__button,
.c-author-box__link,
.c-cta-bottom__btn,
.c-cta-middle__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border-radius: 999px;
	line-height: 1.4;
	font-weight: 700;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.read-more:hover,
.front-section-more__link:hover,
.front-hero__button:hover,
.c-author-box__link:hover,
.c-cta-bottom__btn:hover,
.c-cta-middle__btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.read-more,
.front-section-more__link,
.c-author-box__link,
.c-cta-bottom__btn,
.c-cta-middle__btn {
	background: linear-gradient(135deg, #8c6a4a, #c97b63);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(140, 106, 74, 0.14);
}

.front-hero__button--primary {
	min-width: 152px;
	padding: 14px 24px;
	background: linear-gradient(135deg, #8c6a4a, #c97b63);
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(140, 106, 74, 0.16);
}

.front-hero__button--secondary,
.c-cta-bottom__btn--sub {
	border: 1px solid #d8cabb;
	background-color: #ffffff;
	color: #5a4634;
}

/* --------------------------------
 * Header components
 * -------------------------------- */
.global-nav__list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 14px;
	color: #3a312a;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 999px;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.global-nav__list a:hover {
	opacity: 0.8;
	transform: translateY(-1px);
}

.global-nav__list .is-button-primary > a {
	background: linear-gradient(135deg, #8c6a4a, #c97b63);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(140, 106, 74, 0.18);
	font-weight: 700;
}

.global-nav__list .is-button-secondary > a {
	border: 1px solid #d8cabb;
	background-color: #ffffff;
	color: #5a4634;
	font-weight: 700;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #e7ddd3;
	border-radius: 10px;
	background-color: #ffffff;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(43, 43, 43, 0.06);
}

.menu-toggle__line {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #2b2b2b;
	border-radius: 999px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------
 * Breadcrumbs
 * -------------------------------- */
.breadcrumbs {
	margin-bottom: 24px;
	font-size: 0.875rem;
	color: #7a6c60;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "/";
	color: #b8a99a;
}

.breadcrumbs .is-current {
	color: #2b2b2b;
}

/* --------------------------------
 * Post card
 * -------------------------------- */
.post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e7ddd3;
	border-radius: 18px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 10px 24px rgba(43, 43, 43, 0.04);
}

.post-card__thumbnail {
	overflow: hidden;
}

.post-card__thumbnail img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-card:hover .post-card__thumbnail img {
	transform: scale(1.03);
}

.post-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.post-card__title {
	margin-bottom: 12px;
	font-size: 1.125rem;
	line-height: 1.5;
}

.post-card__title a {
	color: #2b2b2b;
}

.post-card__meta {
	margin-bottom: 12px;
	font-size: 0.875rem;
	color: #7a6c60;
}

.post-card__excerpt {
	flex: 1 1 auto;
	margin-bottom: 16px;
	color: #5d5147;
	line-height: 1.8;
}

.post-card__excerpt p:last-child {
	margin-bottom: 0;
}

.post-card__more {
	margin-top: auto;
}

/* --------------------------------
 * Single post / page titles & meta
 * -------------------------------- */
.single-post__title,
.single-page__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.25;
	color: #2b2b2b;
}

.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	margin-top: 8px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #7a6c60;
}

.single-post__categories {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.single-post__categories a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 4px 10px;
	border: 1px solid #e7ddd3;
	border-radius: 999px;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: #5a4634;
	background-color: #fcfaf7;
}

.single-post__thumbnail img,
.single-page__thumbnail img {
	width: 100%;
	border-radius: 18px;
}

/* --------------------------------
 * Entry content / typography
 * -------------------------------- */
.single-post__content > *:last-child,
.single-page__content > *:last-child {
	margin-bottom: 0;
}

.single-post__content,
.single-page__content,
.entry-content {
	font-size: 1.0625rem;
	line-height: 1.9;
	color: #2f2f2f;
}

.single-post__content p,
.single-page__content p,
.entry-content p {
	margin: 0 0 1.4em;
}

.single-post__content h2,
.single-page__content h2,
.entry-content h2 {
	font-size: clamp(1.3rem, 2.4vw, 1.6rem);
	line-height: 1.45;
	color: #2b2b2b;
}

.single-post__content h3,
.single-page__content h3,
.entry-content h3 {
	margin: 1.8em 0 0.6em;
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	line-height: 1.5;
	color: #2b2b2b;
}

.single-post__content ul,
.single-post__content ol,
.single-page__content ul,
.single-page__content ol,
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.4em;
	padding-left: 1.5em;
}

.single-post__content li,
.single-page__content li,
.entry-content li {
	margin-bottom: 0.5em;
}

.single-post__content img,
.single-page__content img,
.entry-content img {
	height: auto;
	border-radius: 12px;
}

.single-post__content a,
.single-page__content a,
.entry-content a {
	color: #1f5fa8;
	text-decoration: underline;
	text-underline-offset: 0.08em;
}

.single-post__content blockquote,
.single-page__content blockquote,
.entry-content blockquote {
	margin: 0 0 1.6em;
	padding: 1em 1.2em;
	border-left: 4px solid #d8cabb;
	background-color: #fcfaf7;
	color: #5d5147;
}

.single-post__content table,
.single-page__content table,
.entry-content table {
	width: 100%;
	margin: 0 0 1.6em;
	border-collapse: collapse;
}

.single-post__content th,
.single-post__content td,
.single-page__content th,
.single-page__content td,
.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid #e7ddd3;
	text-align: left;
	vertical-align: top;
}

.single-post__content strong,
.single-post__content b,
.single-page__content strong,
.single-page__content b,
.entry-content strong,
.entry-content b {
	padding: 0 0.08em;
	font-weight: 700;
	color: #2f2f2f;
	background: linear-gradient(transparent 38%, #f2eb8f 38%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.single-post__content .wp-block-image,
.single-page__content .wp-block-image,
.entry-content .wp-block-image {
	margin: 0 0 1.6em;
}

.single-post__content .wp-block-button,
.single-page__content .wp-block-button,
.entry-content .wp-block-button {
	margin: 0 0 1.6em;
}

/* --------------------------------
 * Search form
 * -------------------------------- */
.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.search-form__field {
	flex: 1 1 260px;
	min-width: 0;
}

.search-form__submit {
	flex: 0 0 auto;
	min-width: 96px;
}

/* --------------------------------
 * Content none / no results
 * -------------------------------- */
.content-none,
.search-no-results {
	padding: 24px;
	border: 1px solid #e7ddd3;
	border-radius: 18px;
	background-color: #ffffff;
	box-shadow: 0 10px 24px rgba(43, 43, 43, 0.04);
}

.content-none__title,
.search-no-results__title {
	margin-bottom: 12px;
	font-size: 1.25rem;
	color: #2b2b2b;
}

.content-none__text,
.search-no-results__text {
	margin-bottom: 20px;
	color: #6f6258;
}

/* --------------------------------
 * Pagination
 * -------------------------------- */
.pagination {
	margin-top: 32px;
}

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

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid #e7ddd3;
	border-radius: 10px;
	background-color: #ffffff;
	color: #2b2b2b;
}

.pagination .page-numbers.current {
	background: linear-gradient(135deg, #8c6a4a, #c97b63);
	color: #ffffff;
	border-color: transparent;
}

/* --------------------------------
 * Post navigation
 * -------------------------------- */
.post-navigation {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #e7ddd3;
}

.post-navigation__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.post-navigation__prev,
.post-navigation__next {
	padding: 18px;
	border: 1px solid #e7ddd3;
	border-radius: 18px;
	background-color: #ffffff;
	box-shadow: 0 10px 24px rgba(43, 43, 43, 0.03);
}

.post-navigation__next {
	text-align: right;
}

.nav-subtitle {
	display: block;
	margin-bottom: 8px;
	font-size: 0.8125rem;
	color: #7a6c60;
}

.nav-title a {
	color: #2b2b2b;
}

/* --------------------------------
 * Related posts
 * -------------------------------- */
.related-posts {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #e7ddd3;
}

.related-posts__title {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: #2b2b2b;
}

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

.related-post {
	border: 1px solid #e7ddd3;
	border-radius: 18px;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 10px 24px rgba(43, 43, 43, 0.03);
}

.related-post__thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.related-post__title {
	margin: 0;
	padding: 16px;
	font-size: 1rem;
	line-height: 1.6;
}

/* --------------------------------
 * Author box
 * -------------------------------- */
.c-author-box {
	margin-top: 40px;
	padding: 24px;
	border: 1px solid #e7ddd3;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
	box-shadow: 0 12px 28px rgba(43, 43, 43, 0.04);
}

.c-author-box__inner {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.c-author-box__avatar img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
}

.c-author-box__name {
	margin-bottom: 8px;
	font-size: 1.25rem;
	color: #2b2b2b;
}

.c-author-box__desc {
	margin-bottom: 16px;
	color: #6f6258;
}

.c-author-box__sns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.c-author-box__sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #e7ddd3;
	border-radius: 50%;
	background-color: #ffffff;
}

.c-author-box__sns a img {
	width: 24px;
	height: 24px;
}

.c-author-box__link,
.c-author-box__link:link,
.c-author-box__link:visited {
	color: #ffffff;
	text-decoration: none;
}

/* --------------------------------
 * CTA middle
 * -------------------------------- */
.c-cta-middle {
	width: 100%;
	max-width: 760px;
	margin: 40px 0;
	padding: 18px 18px 20px;
	background-color: #c8c3b4;
	box-shadow: none;
}

.c-cta-middle__inner {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) minmax(0, 1.6fr);
	gap: 16px;
	align-items: stretch;
}

.c-cta-middle__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	height: 100%;
	padding-top: 6px;
	padding-bottom: 6px;
}

.c-cta-middle__eyebrow {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 34px;
	margin: 0 0 14px;
	padding: 7px 14px;
	background-color: #ffffff;
	color: #9a927d;
	font-size: 0.75rem;
	line-height: 1.4;
}

.c-cta-middle__title {
	margin: 0;
	color: #2b2b2b;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.01em;
}

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

.c-cta-middle__card,
.c-cta-middle__card:link,
.c-cta-middle__card:visited,
.entry-content .c-cta-middle__card,
.entry-content .c-cta-middle__card:link,
.entry-content .c-cta-middle__card:visited,
.single-post__content .c-cta-middle__card,
.single-post__content .c-cta-middle__card:link,
.single-post__content .c-cta-middle__card:visited {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 190px;
	padding: 16px 10px 12px;
	background-color: #ffffff;
	color: #2b2b2b;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-cta-middle__card:hover,
.entry-content .c-cta-middle__card:hover,
.single-post__content .c-cta-middle__card:hover {
	opacity: 0.96;
	transform: translateY(-2px);
	text-decoration: none;
}

.c-cta-middle__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 12px;
	line-height: 1;
	background-color: transparent;
	border: 0;
}

.c-cta-middle__card-image {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.c-cta-middle__card-image-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: #8c8574;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.c-cta-middle__card-label,
.entry-content .c-cta-middle__card-label,
.single-post__content .c-cta-middle__card-label {
	display: block;
	flex: 1 1 auto;
	color: #2b2b2b;
	font-size: 0.82rem;
	line-height: 1.55;
	font-weight: 500;
	text-decoration: none;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.c-cta-middle__card-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: 12px;
	border-radius: 50%;
	background-color: #b8b19d;
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1;
}

.c-cta-middle__card * {
	text-decoration: none;
}

.c-cta-middle__card-image,
.single-post__content .c-cta-middle__card-image,
.single-page__content .c-cta-middle__card-image,
.entry-content .c-cta-middle__card-image {
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
	border-radius: 0;
}

/* --------------------------------
 * CTA bottom
 * -------------------------------- */
.c-cta-bottom {
	margin-top: 40px;
	padding: 32px 24px;
	border: 1px solid #e7ddd3;
	border-radius: 24px;
	background: linear-gradient(135deg, #f8f3ed 0%, #f4eee8 100%);
	text-align: center;
	box-shadow: 0 16px 32px rgba(140, 106, 74, 0.08);
}

.c-cta-bottom__inner {
	max-width: 800px;
	margin: 0 auto;
}

.c-cta-bottom__title {
	margin-bottom: 12px;
	font-size: clamp(1.375rem, 3vw, 2rem);
	color: #2b2b2b;
}

.c-cta-bottom__text {
	margin-bottom: 20px;
	color: #6f6258;
}

.c-cta-bottom__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.c-cta-bottom__btn,
.c-cta-bottom__btn:link,
.c-cta-bottom__btn:visited {
	text-decoration: none;
}

.c-cta-bottom__btn:not(.c-cta-bottom__btn--sub),
.c-cta-bottom__btn:not(.c-cta-bottom__btn--sub):link,
.c-cta-bottom__btn:not(.c-cta-bottom__btn--sub):visited {
	color: #ffffff;
}

.c-cta-bottom__btn--sub,
.c-cta-bottom__btn--sub:link,
.c-cta-bottom__btn--sub:visited {
	color: #5a4634;
}

/* --------------------------------
 * Front page special components
 * -------------------------------- */
.front-section-more__link {
	white-space: nowrap;
}

.front-topic-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px 20px;
	border: 1px solid #e7ddd3;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
	color: #2b2b2b;
	box-shadow: 0 12px 26px rgba(43, 43, 43, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.front-topic-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(43, 43, 43, 0.06);
	opacity: 0.98;
}

.front-topic-card__label {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.4;
	color: #2b2b2b;
}

.front-topic-card__desc {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #6f6258;
}

.front-brand-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 24px;
	border-radius: 24px;
	color: #2b2b2b;
	box-shadow: 0 16px 32px rgba(43, 43, 43, 0.05);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.front-brand-card:hover {
	transform: translateY(-3px);
	opacity: 0.98;
}

.front-brand-card--primary {
	border: 1px solid #e7ddd3;
	background: linear-gradient(135deg, #fcfaf7 0%, #f4eee8 100%);
}

.front-brand-card--secondary {
	border: 1px solid #d8cabb;
	background: linear-gradient(135deg, #ffffff 0%, #f8f3ed 100%);
}

.front-brand-card__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8c6a4a;
}

.front-brand-card__title {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	line-height: 1.35;
	color: #2b2b2b;
}

.front-brand-card__text {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #6f6258;
}

.front-hero__eyebrow {
	margin: 0 0 14px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #a47c57;
}

.front-hero__title {
	margin: 0 0 24px;
	font-size: 4rem;
	line-height: 1.03;
	letter-spacing: -0.045em;
	color: #111111;
}

.front-hero__title-line,
.front-hero__text-line {
	display: block;
}

.front-hero__text {
	max-width: 620px;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.82;
	color: #9a7d61;
}

.front-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

/* --------------------------------
 * Footer components
 * -------------------------------- */
.site-footer__eyebrow {
	margin: 0 0 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8c6a4a;
}

.site-footer__title {
	margin: 0 0 10px;
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	line-height: 1.3;
	font-weight: 700;
}

.site-footer__title a {
	color: #2b2b2b;
}

.site-footer__description {
	margin: 0 0 18px;
	max-width: 540px;
	color: #6f6258;
	line-height: 1.8;
}

.site-footer__brand-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer__brand-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.3;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__brand-link:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.site-footer__brand-link--primary {
	background: linear-gradient(135deg, #8c6a4a, #c97b63);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(140, 106, 74, 0.16);
}

.site-footer__brand-link--secondary {
	border: 1px solid #d8cabb;
	background-color: #ffffff;
	color: #5a4634;
}

.footer-nav__list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2, auto);
	justify-content: end;
	column-gap: 86px;
	row-gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav__list li {
	margin-bottom: 0;
}

.footer-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	color: #3a312a;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: opacity 0.2s ease;
}

.footer-nav__list a:hover,
.site-footer__sub-links a:hover {
	opacity: 0.7;
}

.site-footer__sub-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	padding-top: 4px;
}

.site-footer__sub-links a {
	color: #6f6258;
	font-size: 0.875rem;
	line-height: 1.5;
}

.site-info {
	margin: 0;
	font-size: 0.8125rem;
	color: #7a6c60;
	line-height: 1.5;
}

.site-footer__logo {
	margin: 0 0 12px;
}

.site-footer__logo a {
	display: inline-flex;
	align-items: center;
}

.site-footer__logo img {
	display: block;
	width: min(100%, 354px);
	height: auto;
}

.site-footer__site-title {
	margin: 0 0 54px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.45;
	color: #111111;
}

.site-footer__company-name {
	margin: 0 0 14px;
	font-size: clamp(1.5rem, 1.8vw, 1.875rem);
	font-weight: 700;
	line-height: 1.35;
	color: #111111;
}

.site-footer__company-address {
	margin: 0;
	font-size: clamp(0.9375rem, 1vw, 1rem);
	line-height: 1.65;
	color: #111111;
}

.site-footer__company-address p {
	margin: 0;
}

.site-footer__company-address p + p {
	margin-top: 2px;
}
.site-footer__socials {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 56px;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
	opacity: 0.75;
	transform: translateY(-1px);
}

.site-footer__social-link img {
	display: block;
	width: 44px;
	height: 44px;
	border-radius: 0;
}

.footer-nav__list {
	display: grid;
	grid-template-columns: repeat(3, max-content);
	justify-content: end;
	column-gap: 86px;
	row-gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav__list li {
	margin-bottom: 0;
}

.footer-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: auto;
	color: #3a312a;
	font-size: 0.9375rem;
	line-height: 1.45;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.site-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
}

.site-footer__bottom-links a {
	color: #6f6258;
	font-size: 0.8125rem;
	line-height: 1.5;
}

.site-footer__bottom-links a:hover {
	opacity: 0.7;
}

.site-info {
	margin: 0;
	font-size: 0.8125rem;
	color: #7a6c60;
	line-height: 1.5;
	text-align: right;
	letter-spacing: 0.01em;
}

/* --------------------------------
 * TOC
 * -------------------------------- */
.toc {
	margin: 0 0 36px;
}

.toc__inner {
	width: min(100%, 480px);
	margin: 0 auto;
	padding: 24px 26px 26px;
	border: 1px solid #a8a8a8;
	border-radius: 0;
	background-color: #f3f3f3;
	box-shadow: none;
}

.toc__head {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	margin-bottom: 18px;
	line-height: 1;
}

.toc__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.5;
	color: #333333;
}

.toc__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #666666;
	font-size: 0.8125rem;
	line-height: 1.5;
	vertical-align: baseline;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.toc__toggle:hover {
	color: #333333;
	text-decoration: underline;
}

.toc__list {
	margin: 0;
	padding-left: 1.5em;
	list-style: decimal;
}

.toc__list.is-hidden {
	display: none;
}

.toc__item {
	margin-bottom: 10px;
}

.toc__item:last-child {
	margin-bottom: 0;
}

.toc,
.toc__list,
.toc__item {
	line-height: 1.3;
}

.toc__link {
	color: #1f5fa8;
	font-size: 0.9375rem;
	line-height: 1.5;
	text-decoration: none;
	word-break: break-word;
}

.toc__link:hover {
	color: #1f5fa8;
	text-decoration: underline;
	opacity: 1;
}

/* --------------------------------
 * Lead box
 * -------------------------------- */
.c-lead-box {
	margin: 0 0 32px;
}

.c-lead-box__inner {
	padding: 35px 40px 25px;
	border: 1px solid #8a8a8a;
	background-color: #ffffff;
}

.c-lead-box__title {
	margin: 0 0 20px;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	line-height: 1.5;
	color: #2b2b2b;
}

.single-post__content .c-lead-box__list,
.single-page__content .c-lead-box__list,
.entry-content .c-lead-box__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.single-post__content .c-lead-box__item,
.single-page__content .c-lead-box__item,
.entry-content .c-lead-box__item {
	position: relative;
	margin-bottom: 12px;
	padding-left: 1.1em;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: #2f2f2f;
}

.c-lead-box__item:last-child {
	margin-bottom: 0;
}

.c-lead-box__item::before {
	content: "●";
	position: absolute;
	top: 0;
	left: 0;
	color: #000000;
	font-size: 0.9em;
	line-height: inherit;
}

/* --------------------------------
 * Responsive
 * -------------------------------- */
@media (max-width: 1024px) {
	.related-posts__list {
		grid-template-columns: 1fr;
	}
	
	.front-hero__title {
		font-size: clamp(2.5rem, 7vw, 3.75rem);
		line-height: 1.02;
	}

	.front-hero__text {
		max-width: none;
	}
}

@media (max-width: 767px) {
	.menu-toggle {
		display: inline-flex;
	}

	.site-header__nav-wrap {
		display: none;
		width: 100%;
		padding-top: 12px;
	}

	.site-header__nav-wrap.is-open {
		display: block;
	}

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

	.global-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid #e7ddd3;
	}

	.global-nav__list li {
		width: 100%;
		margin-bottom: 0;
	}

	.global-nav__list a {
		width: 100%;
		justify-content: center;
		min-height: 46px;
		padding: 12px 14px;
		line-height: 1.2;
	}

	.post-navigation__inner {
		grid-template-columns: 1fr;
	}

	.post-navigation__next {
		text-align: left;
	}

	.c-author-box__inner {
		flex-direction: column;
	}

	.c-cta-bottom__buttons,
	.search-form,
	.front-hero__actions,
	.site-footer__brand-links {
		flex-direction: column;
		align-items: stretch;
	}

	.read-more,
	.front-section-more__link,
	.front-hero__button,
	.c-author-box__link,
	.c-cta-bottom__btn,
	.c-cta-middle__btn,
	.search-form__submit,
	.site-footer__brand-link {
		width: 100%;
	}
	.footer-nav__list {
		grid-template-columns: 1fr;
		justify-content: start;
		gap: 8px;
	}

	.site-footer__socials {
		justify-content: flex-start;
		margin-top: 0;
	}

	.site-footer__sub-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.site-header__cta-group {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid #e7ddd3;
	}

	.site-header__cta {
		width: 100%;
	}

	.toc {
		margin-bottom: 28px;
	}

	.toc__inner {
		width: 100%;
		padding: 18px 16px 20px;
	}

	.toc__head {
		margin-bottom: 14px;
	}

	.toc__title {
		font-size: 0.9375rem;
	}

	.toc__list {
		padding-left: 1.35em;
	}

	.toc__item {
		margin-bottom: 8px;
	}

	.toc__link {
		font-size: 0.875rem;
		line-height: 1.35;
	}

	.single-post__content,
	.single-page__content,
	.entry-content {
		font-size: 1rem;
		line-height: 1.85;
	}

	.single-post__content h2,
	.single-page__content h2,
	.entry-content h2 {
		margin-top: 2em;
		font-size: clamp(1.35rem, 5vw, 1.65rem);
	}

	.single-post__content h3,
	.single-page__content h3,
	.entry-content h3 {
		margin-top: 1.5em;
		font-size: clamp(1.1rem, 4vw, 1.25rem);
	}
	
	.c-cta-middle {
		width: 100%;
		max-width: 760px;
		margin: 28px 0;
		padding: 18px 16px;
	}

	.c-cta-middle__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.c-cta-middle__main {
		height: auto;
		padding-top: 0;
		padding-bottom: 0;
	}

	.c-cta-middle__eyebrow {
		min-height: auto;
		margin-bottom: 14px;
		padding: 8px 14px;
		font-size: 0.8rem;
	}

	.c-cta-middle__title {
		font-size: clamp(1.35rem, 6vw, 1.7rem);
		line-height: 1.5;
	}

	.c-cta-middle__cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.c-cta-middle__card,
	.c-cta-middle__card:link,
	.c-cta-middle__card:visited,
	.entry-content .c-cta-middle__card,
	.entry-content .c-cta-middle__card:link,
	.entry-content .c-cta-middle__card:visited,
	.single-post__content .c-cta-middle__card,
	.single-post__content .c-cta-middle__card:link,
	.single-post__content .c-cta-middle__card:visited {
		min-height: auto;
		padding: 18px 14px 16px;
	}

	.c-cta-middle__card-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 12px;
	}

	.c-cta-middle__card-image {
		width: 56px;
		height: 56px;
	}

	.c-cta-middle__card-image-placeholder {
		width: 36px;
		height: 36px;
		font-size: 0.625rem;
	}

	.c-cta-middle__card-label,
	.entry-content .c-cta-middle__card-label,
	.single-post__content .c-cta-middle__card-label {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.c-cta-middle__card-arrow {
		width: 32px;
		height: 32px;
		margin-top: 14px;
		font-size: 1.2rem;
	}
	
	.c-cta-middle__card-image,
	.single-post__content .c-cta-middle__card-image,
	.single-page__content .c-cta-middle__card-image,
	.entry-content .c-cta-middle__card-image {
		width: 52px;
		height: 52px;
		border-radius: 0;
	}
	
	.c-lead-box__inner {
		padding: 24px 20px 20px;
	}

	.c-lead-box__title {
		margin-bottom: 16px;
		font-size: 1.2rem;
	}

	.single-post__content .c-lead-box__list,
	.single-page__content .c-lead-box__list,
	.entry-content .c-lead-box__list {
		padding-left: 0;
	}

	.c-lead-box__item {
		margin-bottom: 10px;
		font-size: 1rem;
		line-height: 1.75;
	}
	
	.front-hero__eyebrow {
		margin-bottom: 12px;
		font-size: 0.8125rem;
	}

	.front-hero__title {
		margin-bottom: 20px;
		font-size: clamp(2.1rem, 9vw, 2.9rem);
		line-height: 1.05;
	}

	.front-hero__text {
		font-size: 0.9375rem;
		line-height: 1.8;
	}

	.front-hero__actions {
		margin-top: 24px;
	}
}