/* =========================================================
   BRANDWAY BUSINESS / WORK / PARTNERS
   공통 서브페이지 디자인
========================================================= */
.bws-page,
.bws-page * {
	box-sizing: border-box;
}

.bws-page {
	--bws-bg: #f2f2ef;
	--bws-paper: #fafaf8;
	--bws-soft: #e8e8e4;
	--bws-ink: #111111;
	--bws-muted: #64645f;
	--bws-line: rgba(17, 17, 17, 0.15);
	--bws-orange: #ff4b2b;
	--bws-mint: #52e5d1;
	--bws-dark: #0a0a0a;
	--bws-container: 1520px;

	position: relative;
	width: 100%;
	min-width: 0;
	overflow: clip;
	background: var(--bws-bg);
	color: var(--bws-ink);
	font-family:
		"Pretendard Variable",
		Pretendard,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: -0.025em;
	word-break: keep-all;
	isolation: isolate;
}

.bws-page h1,
.bws-page h2,
.bws-page h3,
.bws-page h4,
.bws-page p,
.bws-page ul,
.bws-page ol,
.bws-page figure {
	margin: 0;
	padding: 0;
}

.bws-page a {
	color: inherit;
	text-decoration: none;
}

.bws-page button {
	font: inherit;
}

.bws-container {
	position: relative;
	width: min(
		var(--bws-container),
		calc(100% - clamp(42px, 8.35vw, 160px))
	);
	margin: 0 auto;
}

.bws-grid-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-image:
		linear-gradient(
			90deg,
			transparent calc(25% - 0.5px),
			rgba(0, 0, 0, 0.032) 25%,
			transparent calc(25% + 0.5px),
			transparent calc(50% - 0.5px),
			rgba(0, 0, 0, 0.032) 50%,
			transparent calc(50% + 0.5px),
			transparent calc(75% - 0.5px),
			rgba(0, 0, 0, 0.032) 75%,
			transparent calc(75% + 0.5px)
		);
	background-size: min(var(--bws-container), calc(100% - 160px)) 100%;
	background-position: center top;
	background-repeat: no-repeat;
}

.bws-noise {
	position: absolute;
	inset: 0;
	z-index: 30;
	opacity: 0.018;
	pointer-events: none;
	background-image:
		url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.82'/%3E%3C/svg%3E");
}

.bws-section {
	position: relative;
	padding: clamp(92px, 8vw, 155px) 0;
}

.bws-section--paper {
	background: var(--bws-paper);
}

.bws-section--soft {
	background: var(--bws-soft);
}

.bws-section--dark {
	background: var(--bws-dark);
	color: #fff;
}

.bws-label {
	display: flex;
	align-items: center;
	gap: 13px;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.bws-label span {
	color: var(--bws-orange);
}

.bws-label i {
	display: block;
	width: 38px;
	height: 1px;
	background: currentColor;
	opacity: 0.4;
}

.bws-eyebrow {
	display: block;
	margin-bottom: clamp(18px, 2vw, 32px);
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.bws-mask {
	display: block;
	overflow: hidden;
	padding: 0.08em 0.06em 0.12em;
	margin: -0.08em -0.06em -0.12em;
}

.bws-display {
	font-size: clamp(52px, 5.4vw, 104px);
	font-weight: 680;
	line-height: 1.03;
	letter-spacing: -0.068em;
}

.bws-section-head {
	display: grid;
	grid-template-columns: minmax(180px, 0.72fr) minmax(600px, 2.28fr);
	gap: clamp(50px, 8vw, 150px);
	align-items: start;
}

.bws-section-index {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.bws-section-index span {
	color: var(--bws-orange);
}

.bws-section-index p {
	color: var(--bws-muted);
}

.bws-section-index.is-light p {
	color: rgba(255, 255, 255, 0.55);
}

.bws-copy-large {
	font-size: clamp(23px, 1.9vw, 36px);
	font-weight: 610;
	line-height: 1.52;
	letter-spacing: -0.047em;
}

.bws-copy-body {
	color: var(--bws-muted);
	font-size: clamp(14px, 0.95vw, 18px);
	line-height: 1.9;
}

.bws-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-width: 230px;
	min-height: 64px;
	padding: 0 24px;
	overflow: hidden;
	border: 1px solid var(--bws-ink);
	background: var(--bws-mint);
	color: var(--bws-ink);
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.07em;
	cursor: pointer;
	transition:
		color 0.35s ease,
		background 0.35s ease,
		transform 0.5s cubic-bezier(.19, 1, .22, 1),
		box-shadow 0.35s ease;
}

.bws-button:hover,
.bws-button:focus-visible {
	background: var(--bws-ink);
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 16px 42px rgba(17, 17, 17, 0.15);
}

.bws-button i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 13px;
	font-style: normal;
	transition: transform 0.45s cubic-bezier(.19, 1, .22, 1);
}

.bws-button:hover i,
.bws-button:focus-visible i {
	transform: rotate(45deg);
}


/* =========================================================
   SUBPAGE HERO
========================================================= */
.bws-hero {
	position: relative;
	min-height: clamp(760px, 86vh, 920px);
	overflow: hidden;
	background:
		radial-gradient(
			circle at 78% 25%,
			rgba(82, 229, 209, 0.18),
			transparent 25%
		),
		linear-gradient(135deg, #f7f7f4 0%, #ecece8 100%);
}

.bws-hero__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: clamp(760px, 86vh, 920px);
	padding:
		clamp(132px, 13vh, 165px)
		0
		clamp(42px, 4.6vw, 72px);
}

.bws-hero__top,
.bws-hero__bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.bws-hero__meta {
	color: rgba(17, 17, 17, 0.48);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.06em;
	text-align: right;
}

.bws-hero__content {
	position: relative;
	z-index: 2;
	padding: clamp(42px, 5.4vh, 78px) 0;
}

.bws-hero__kicker {
	margin-bottom: 20px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.bws-hero__title {
	max-width: 1460px;
	font-size: clamp(60px, 7.7vw, 148px);
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: -0.073em;
}

.bws-hero__title em {
	color: transparent;
	font-style: normal;
	-webkit-text-stroke: 1px var(--bws-ink);
	text-stroke: 1px var(--bws-ink);
}

.bws-hero__bottom {
	align-items: end;
}

.bws-hero__statement {
	max-width: 430px;
	font-size: clamp(26px, 2.1vw, 40px);
	font-weight: 680;
	line-height: 1.18;
	letter-spacing: -0.055em;
}

.bws-hero__copy {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(35px, 5vw, 82px);
	width: min(850px, 58%);
	color: var(--bws-muted);
	font-size: clamp(14px, 0.9vw, 17px);
	line-height: 1.87;
}

.bws-hero__copy strong {
	display: block;
	margin-bottom: 12px;
	color: var(--bws-ink);
	font-size: clamp(17px, 1.15vw, 22px);
	font-weight: 650;
	line-height: 1.5;
}

.bws-orbit {
	position: absolute;
	border: 1px solid rgba(17, 17, 17, 0.075);
	border-radius: 50%;
	pointer-events: none;
	animation: bwsOrbit 26s linear infinite;
}

.bws-orbit--one {
	top: -21vw;
	right: -12vw;
	width: 57vw;
	height: 57vw;
}

.bws-orbit--two {
	bottom: -22vw;
	left: -14vw;
	width: 43vw;
	height: 43vw;
	animation-direction: reverse;
	animation-duration: 31s;
}

.bws-orbit::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bws-orange);
}

.bws-crosshair {
	position: absolute;
	right: 16%;
	bottom: 14%;
	width: clamp(110px, 10vw, 190px);
	aspect-ratio: 1;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 50%;
	pointer-events: none;
	animation: bwsFloat 6s ease-in-out infinite;
}

.bws-crosshair::before,
.bws-crosshair::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--bws-orange);
	transform: translate(-50%, -50%);
}

.bws-crosshair::before {
	width: 145%;
	height: 1px;
}

.bws-crosshair::after {
	width: 1px;
	height: 145%;
}

.bws-crosshair span {
	position: absolute;
	inset: 35%;
	border-radius: 50%;
	background: var(--bws-orange);
}


/* =========================================================
   BUSINESS PAGE
========================================================= */
.bwb-intro__grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(600px, 1.42fr);
	gap: clamp(80px, 11vw, 210px);
	margin-top: clamp(95px, 9vw, 165px);
	padding-top: clamp(60px, 6vw, 105px);
	border-top: 1px solid var(--bws-line);
}

.bwb-intro__statement {
	position: sticky;
	top: 110px;
	align-self: start;
	font-size: clamp(31px, 2.55vw, 49px);
	font-weight: 680;
	line-height: 1.2;
	letter-spacing: -0.056em;
}

.bwb-intro__statement span {
	display: block;
	margin-top: 34px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.bwb-intro__body {
	display: grid;
	gap: 42px;
}

.bwb-intro__body p:first-child {
	font-size: clamp(23px, 1.9vw, 35px);
	font-weight: 610;
	line-height: 1.55;
	letter-spacing: -0.047em;
}

.bwb-intro__body p:last-child {
	color: var(--bws-muted);
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.95;
}

.bwb-tabs-wrap {
	position: sticky;
	top: 96px;
	z-index: 20;
	background: rgba(242, 242, 239, 0.96);
	border-top: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
	box-shadow:
		0 12px 30px rgba(17, 17, 17, 0.055);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.bwb-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	width: min(var(--bws-container), calc(100% - clamp(42px, 8.35vw, 160px)));
	margin: 0 auto;
}

.bwb-tab {
	position: relative;
	min-height: 84px;
	padding: 14px 18px;
	border: 0;
	border-right: 1px solid var(--bws-line);
	background: transparent;
	color: #777772;
	text-align: left;
	cursor: pointer;
	transition:
		background 0.35s ease,
		color 0.35s ease;
}

.bwb-tab:first-child {
	border-left: 1px solid var(--bws-line);
}

.bwb-tab span {
	display: block;
	margin-bottom: 8px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bwb-tab strong {
	font-family: "Pretendard Variable", Pretendard, sans-serif;
	font-size: clamp(13px, 0.9vw, 17px);
	font-weight: 650;
	line-height: 1.25;
}

.bwb-tab:hover,
.bwb-tab.is-active {
	background: var(--bws-ink);
	color: #fff;
}

.bwb-panels {
	background: var(--bws-paper);
}

.bwb-panel {
	display: none;
	padding: clamp(100px, 9vw, 170px) 0;
}

.bwb-panel.is-active {
	display: block;
	animation: bwbPanelIn 0.7s cubic-bezier(.19, 1, .22, 1) both;
}

.bwb-panel__head {
	display: grid;
	grid-template-columns: minmax(180px, 0.65fr) minmax(650px, 2.35fr);
	gap: clamp(55px, 8vw, 150px);
	align-items: start;
}

.bwb-panel__number {
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(58px, 6vw, 116px);
	font-weight: 750;
	line-height: 0.8;
	letter-spacing: -0.075em;
}

.bwb-panel__title small {
	display: block;
	margin-bottom: 20px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.bwb-panel__title h2 {
	font-size: clamp(48px, 4.7vw, 90px);
	font-weight: 680;
	line-height: 1.05;
	letter-spacing: -0.067em;
}

.bwb-panel__title h2 em {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
}

.bwb-panel__lead {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.8fr);
	gap: clamp(45px, 7vw, 130px);
	margin-top: clamp(70px, 7vw, 125px);
	padding: clamp(42px, 4.5vw, 75px) 0;
	border-top: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
}

.bwb-panel__lead strong {
	font-size: clamp(25px, 2.1vw, 40px);
	font-weight: 650;
	line-height: 1.45;
	letter-spacing: -0.05em;
}

.bwb-panel__lead p {
	color: var(--bws-muted);
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.95;
}

.bwb-solution-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(75px, 7vw, 125px);
	border-top: 1px solid var(--bws-line);
	border-left: 1px solid var(--bws-line);
}

.bwb-solution {
	min-height: 300px;
	padding: clamp(28px, 2.7vw, 50px);
	border-right: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
	transition:
		background 0.4s ease,
		transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

.bwb-solution:hover {
	position: relative;
	z-index: 2;
	background: var(--bws-bg);
	transform: translateY(-8px);
}

.bwb-solution span {
	display: block;
	margin-bottom: 70px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.11em;
}

.bwb-solution h3 {
	margin-bottom: 22px;
	font-size: clamp(22px, 1.55vw, 30px);
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.045em;
}

.bwb-solution p {
	color: var(--bws-muted);
	font-size: 14px;
	line-height: 1.85;
}

.bwb-process {
	margin-top: clamp(90px, 8vw, 150px);
}

.bwb-process__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(45px, 5vw, 80px);
}

.bwb-process__head h3 {
	font-size: clamp(34px, 3vw, 58px);
	font-weight: 680;
	line-height: 1.08;
	letter-spacing: -0.06em;
}

.bwb-process__head p {
	max-width: 480px;
	color: var(--bws-muted);
	font-size: 14px;
	line-height: 1.85;
}

.bwb-process__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--bws-line);
	border-left: 1px solid var(--bws-line);
	list-style: none;
}

.bwb-process__list li {
	min-height: 230px;
	padding: clamp(25px, 2.5vw, 45px);
	border-right: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
}

.bwb-process__list span {
	display: block;
	margin-bottom: 45px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bwb-process__list h4 {
	margin-bottom: 15px;
	font-size: clamp(19px, 1.35vw, 26px);
	font-weight: 650;
	line-height: 1.3;
}

.bwb-process__list p {
	color: var(--bws-muted);
	font-size: 13px;
	line-height: 1.8;
}

.bwb-panel__cta {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(50px, 8vw, 150px);
	align-items: end;
	margin-top: clamp(85px, 8vw, 145px);
	padding: clamp(50px, 5vw, 90px);
	background: var(--bws-ink);
	color: #fff;
}

.bwb-panel__cta p {
	max-width: 850px;
	font-size: clamp(27px, 2.4vw, 46px);
	font-weight: 620;
	line-height: 1.35;
	letter-spacing: -0.055em;
}

.bwb-panel__cta .bws-button {
	flex: 0 0 auto;
}


/* =========================================================
   WORK PAGE
========================================================= */
.bww-manifesto {
	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(620px, 1.55fr);
	gap: clamp(75px, 11vw, 205px);
	margin-top: clamp(95px, 9vw, 165px);
	padding-top: clamp(60px, 6vw, 105px);
	border-top: 1px solid var(--bws-line);
}

.bww-manifesto__aside {
	font-size: clamp(31px, 2.55vw, 49px);
	font-weight: 680;
	line-height: 1.2;
	letter-spacing: -0.055em;
}

.bww-manifesto__copy {
	display: grid;
	gap: 36px;
}

.bww-manifesto__copy p:first-child {
	font-size: clamp(23px, 1.9vw, 35px);
	font-weight: 610;
	line-height: 1.55;
	letter-spacing: -0.047em;
}

.bww-manifesto__copy p:last-child {
	color: var(--bws-muted);
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.95;
}

.bww-filter-wrap {
	position: sticky;
	top: 78px;
	z-index: 20;
	background: rgba(250, 250, 248, 0.93);
	border-top: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.bww-filter {
	display: flex;
	align-items: center;
	width: min(var(--bws-container), calc(100% - clamp(42px, 8.35vw, 160px)));
	margin: 0 auto;
	overflow-x: auto;
	scrollbar-width: none;
}

.bww-filter::-webkit-scrollbar {
	display: none;
}

.bww-filter button {
	flex: 0 0 auto;
	min-height: 72px;
	padding: 0 clamp(18px, 2vw, 36px);
	border: 0;
	border-right: 1px solid var(--bws-line);
	background: transparent;
	color: #777772;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition:
		background 0.35s ease,
		color 0.35s ease;
}

.bww-filter button:first-child {
	border-left: 1px solid var(--bws-line);
}

.bww-filter button:hover,
.bww-filter button.is-active {
	background: var(--bws-ink);
	color: #fff;
}

.bww-archive {
	padding: clamp(80px, 7.5vw, 145px) 0 clamp(110px, 10vw, 190px);
	background: var(--bws-paper);
}

.bww-archive__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: clamp(55px, 6vw, 95px);
}

.bww-archive__top h2 {
	font-size: clamp(42px, 4vw, 77px);
	font-weight: 680;
	line-height: 1.05;
	letter-spacing: -0.065em;
}

.bww-archive__top p {
	max-width: 520px;
	color: var(--bws-muted);
	font-size: 14px;
	line-height: 1.85;
}

.bww-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(35px, 4vw, 70px) clamp(22px, 2.6vw, 44px);
}

.bww-card {
	min-width: 0;
	transition:
		opacity 0.4s ease,
		transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

.bww-card.is-filtered-out {
	display: none;
}

.bww-card__visual {
	position: relative;
	aspect-ratio: 1.16;
	overflow: hidden;
	background: #deded8;
	isolation: isolate;
}

.bww-card__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	background:
		linear-gradient(
			180deg,
			transparent 48%,
			rgba(0, 0, 0, 0.32) 100%
		);
	opacity: 0.25;
	transition: opacity 0.45s ease;
}

.bww-card:hover .bww-card__visual::after {
	opacity: 0.5;
}

.bww-card__visual > span {
	position: absolute;
	display: block;
	transition: transform 0.85s cubic-bezier(.19, 1, .22, 1);
}

.bww-card__visual .shape-one {
	top: 13%;
	left: 10%;
	width: 42%;
	aspect-ratio: 1;
	border: 1px solid rgba(17, 17, 17, 0.25);
	border-radius: 50%;
}

.bww-card__visual .shape-two {
	right: 9%;
	bottom: 10%;
	width: 43%;
	aspect-ratio: 1;
	background: var(--bws-orange);
	border-radius: 50%;
}

.bww-card__visual .shape-three {
	top: 0;
	right: 19%;
	width: 1px;
	height: 100%;
	background: rgba(17, 17, 17, 0.26);
	transform: rotate(32deg);
}

.bww-card:hover .shape-one {
	transform: translate(12px, -12px) rotate(45deg);
}

.bww-card:hover .shape-two {
	transform: translate(-10px, -10px) scale(1.08);
}

.bww-card:hover .shape-three {
	transform: rotate(46deg);
}

.bww-card__visual.is-mint {
	background: #bceee6;
}

.bww-card__visual.is-orange {
	background: #ffc2b5;
}

.bww-card__visual.is-ink {
	background: #171717;
}

.bww-card__visual.is-ink .shape-one,
.bww-card__visual.is-ink .shape-three {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.28);
}

.bww-card__visual.is-ink .shape-two {
	background: var(--bws-mint);
}

.bww-card__visual.is-paper {
	background: #eee9dd;
}

.bww-card__visual.is-blue {
	background: #cbd7e6;
}

.bww-card__visual.is-lime {
	background: #d9efb8;
}

.bww-card__visual.is-purple {
	background: #d8cce7;
}

.bww-card__visual.is-sand {
	background: #e7d6c3;
}

.bww-card__visual.is-gray {
	background: #d7d7d2;
}

.bww-card__hover {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(17, 17, 17, 0.55);
	color: #fff;
	opacity: 0;
	transition: opacity 0.45s ease;
}

.bww-card:hover .bww-card__hover {
	opacity: 1;
}

.bww-card__hover span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bww-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: start;
	padding-top: 23px;
	border-top: 1px solid transparent;
}

.bww-card__body small {
	display: block;
	margin-bottom: 10px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bww-card__body h3 {
	font-size: clamp(20px, 1.5vw, 29px);
	font-weight: 660;
	line-height: 1.25;
	letter-spacing: -0.047em;
}

.bww-card__body p {
	margin-top: 10px;
	color: var(--bws-muted);
	font-size: 13px;
	line-height: 1.75;
}

.bww-card__body > span {
	color: #888883;
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.bww-system {
	background: var(--bws-dark);
	color: #fff;
}

.bww-system__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(600px, 1.45fr);
	gap: clamp(80px, 11vw, 210px);
	margin-top: clamp(90px, 8vw, 145px);
}

.bww-system__statement {
	position: sticky;
	top: 110px;
	align-self: start;
	font-size: clamp(31px, 2.55vw, 49px);
	font-weight: 680;
	line-height: 1.2;
	letter-spacing: -0.055em;
}

.bww-system__list {
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bww-system__item {
	display: grid;
	grid-template-columns: 65px 1fr;
	gap: 25px;
	padding: clamp(42px, 4.5vw, 75px) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bww-system__item > span {
	padding-top: 7px;
	color: var(--bws-mint);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
}

.bww-system__item h3 {
	margin-bottom: 16px;
	font-size: clamp(23px, 1.7vw, 33px);
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.048em;
}

.bww-system__item p {
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	line-height: 1.85;
}


/* =========================================================
   PARTNERS PAGE
========================================================= */
.bwp-types {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(90px, 8vw, 150px);
	border-top: 1px solid var(--bws-line);
	border-left: 1px solid var(--bws-line);
}

.bwp-type {
	position: relative;
	min-height: 420px;
	padding: clamp(32px, 3.5vw, 64px);
	overflow: hidden;
	border-right: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
	transition:
		background 0.45s ease,
		transform 0.6s cubic-bezier(.19, 1, .22, 1);
}

.bwp-type:hover {
	z-index: 2;
	background: var(--bws-paper);
	transform: translateY(-9px);
}

.bwp-type small {
	display: block;
	margin-bottom: 70px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.bwp-type h3 {
	margin-bottom: 25px;
	font-size: clamp(29px, 2.35vw, 45px);
	font-weight: 660;
	line-height: 1.15;
	letter-spacing: -0.055em;
}

.bwp-type p {
	max-width: 560px;
	color: var(--bws-muted);
	font-size: 15px;
	line-height: 1.9;
}

.bwp-type__meta {
	position: absolute;
	right: clamp(28px, 3vw, 55px);
	bottom: clamp(28px, 3vw, 55px);
	display: flex;
	align-items: center;
	gap: 12px;
	color: #81817c;
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.bwp-type__meta i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--bws-line);
	border-radius: 50%;
	font-size: 15px;
	font-style: normal;
}

.bwp-ecosystem {
	background: var(--bws-dark);
	color: #fff;
}

.bwp-ecosystem__lead {
	display: grid;
	grid-template-columns: minmax(350px, 1fr) minmax(350px, 0.7fr);
	gap: clamp(50px, 8vw, 150px);
	align-items: end;
	margin-top: clamp(80px, 8vw, 135px);
}

.bwp-ecosystem__lead p:first-child {
	font-size: clamp(30px, 2.7vw, 52px);
	font-weight: 630;
	line-height: 1.35;
	letter-spacing: -0.057em;
}

.bwp-ecosystem__lead p:last-child {
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
	line-height: 1.9;
}

.bwp-ecosystem__flow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(80px, 8vw, 145px);
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.bwp-ecosystem__flow::before {
	content: "";
	position: absolute;
	top: 100px;
	right: 7%;
	left: 7%;
	height: 1px;
	background: rgba(255, 255, 255, 0.22);
}

.bwp-node {
	position: relative;
	min-height: 350px;
	padding: 32px clamp(23px, 2.2vw, 42px) 45px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.bwp-node:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.bwp-node > span {
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	color: var(--bws-mint);
	letter-spacing: 0.1em;
}

.bwp-node__dot {
	position: relative;
	z-index: 2;
	width: 48px;
	height: 48px;
	margin: 45px 0 58px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: var(--bws-dark);
}

.bwp-node__dot::after {
	content: "";
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	background: var(--bws-mint);
}

.bwp-node h3 {
	margin-bottom: 17px;
	font-size: clamp(22px, 1.6vw, 31px);
	font-weight: 650;
	line-height: 1.3;
}

.bwp-node p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	line-height: 1.8;
}

.bwp-principles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(85px, 8vw, 145px);
	border-top: 1px solid var(--bws-line);
	border-left: 1px solid var(--bws-line);
}

.bwp-principle {
	min-height: 330px;
	padding: clamp(30px, 3vw, 55px);
	border-right: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
}

.bwp-principle span {
	display: block;
	margin-bottom: 80px;
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bwp-principle h3 {
	margin-bottom: 20px;
	font-size: clamp(24px, 1.8vw, 35px);
	font-weight: 650;
	line-height: 1.3;
	letter-spacing: -0.05em;
}

.bwp-principle p {
	color: var(--bws-muted);
	font-size: 14px;
	line-height: 1.85;
}

.bwp-cta {
	position: relative;
	overflow: hidden;
	background: var(--bws-mint);
}

.bwp-cta::before {
	content: "";
	position: absolute;
	top: -45%;
	right: -12%;
	width: 55vw;
	height: 55vw;
	border: 1px solid rgba(17, 17, 17, 0.14);
	border-radius: 50%;
}

.bwp-cta__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(60px, 10vw, 190px);
	align-items: end;
}

.bwp-cta h2 {
	max-width: 1050px;
	font-size: clamp(46px, 5.5vw, 105px);
	font-weight: 680;
	line-height: 1.03;
	letter-spacing: -0.07em;
}

.bwp-cta p {
	max-width: 650px;
	margin-top: 38px;
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.9;
}

.bwp-cta .bws-button {
	background: var(--bws-ink);
	color: #fff;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */
.bws-page [data-bws-reveal] {
	transition-delay: var(--bws-delay, 0ms);
	will-change: transform, opacity;
}

.bws-page [data-bws-reveal="fade"] {
	opacity: 0;
	transition: opacity 1s ease var(--bws-delay, 0ms);
}

.bws-page [data-bws-reveal="up"] {
	opacity: 0;
	transform: translate3d(0, 46px, 0);
	transition:
		opacity 1s ease var(--bws-delay, 0ms),
		transform 1.15s cubic-bezier(.19, 1, .22, 1) var(--bws-delay, 0ms);
}

.bws-page [data-bws-reveal="left"] {
	opacity: 0;
	transform: translate3d(-55px, 0, 0);
	transition:
		opacity 1s ease var(--bws-delay, 0ms),
		transform 1.2s cubic-bezier(.19, 1, .22, 1) var(--bws-delay, 0ms);
}

.bws-page [data-bws-reveal="title"] {
	display: block;
	opacity: 0;
	transform: translate3d(0, 115%, 0) rotate(1.4deg);
	transform-origin: left bottom;
	transition:
		opacity 1s ease var(--bws-delay, 0ms),
		transform 1.25s cubic-bezier(.19, 1, .22, 1) var(--bws-delay, 0ms);
}

.bws-page [data-bws-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(0);
}

@keyframes bwsOrbit {
	to {
		transform: rotate(360deg);
	}
}

@keyframes bwsFloat {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

@keyframes bwbPanelIn {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1100px) {
	.bws-container {
		width: calc(100% - 80px);
	}

	.bws-section {
		padding: 125px 0;
	}

	.bws-section-head {
		grid-template-columns: 0.55fr 1.45fr;
		gap: 55px;
	}

	.bws-hero__copy {
		width: 64%;
	}

	.bwb-tabs {
		width: calc(100% - 80px);
	}

	.bwb-panel__head {
		grid-template-columns: 0.45fr 1.55fr;
		gap: 55px;
	}

	.bwb-solution-grid,
	.bwb-process__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bww-filter {
		width: calc(100% - 80px);
	}

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

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

	.bwp-ecosystem__flow::before {
		display: none;
	}

	.bwp-node:nth-child(2) {
		border-right: 1px solid rgba(255, 255, 255, 0.18);
	}
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 760px) {
	.bws-page {
		word-break: keep-all;
	}

	.bws-container {
		width: calc(100% - 40px);
	}

	.bws-grid-bg {
		display: none;
	}

	.bws-section {
		padding: 92px 0;
	}

	.bws-section-head {
		display: block;
	}

	.bws-section-index {
		margin-bottom: 48px;
	}

	.bws-display {
		font-size: clamp(40px, 11.8vw, 59px);
		line-height: 1.08;
	}

	.bws-hero {
		min-height: 830px;
	}

	.bws-hero__inner {
		min-height: 830px;
		padding: 112px 0 34px;
	}

	.bws-hero__meta {
		display: none;
	}

	.bws-hero__content {
		padding: 75px 0 60px;
	}

	.bws-hero__title {
		font-size: clamp(43px, 12.3vw, 64px);
		line-height: 0.99;
	}

	.bws-hero__bottom {
		display: block;
	}

	.bws-hero__statement {
		margin-bottom: 42px;
		font-size: 27px;
	}

	.bws-hero__copy {
		display: block;
		width: 100%;
		font-size: 13px;
	}

	.bws-hero__copy p + p {
		margin-top: 24px;
	}

	.bws-crosshair {
		right: -12px;
		bottom: 18%;
		width: 110px;
		opacity: 0.55;
	}

	.bws-orbit--one {
		top: -120px;
		right: -190px;
		width: 440px;
		height: 440px;
	}

	.bws-orbit--two {
		bottom: -180px;
		left: -200px;
		width: 400px;
		height: 400px;
	}

	.bws-button {
		width: 100%;
		min-width: 0;
	}

	/* Business */
	.bwb-intro__grid {
		display: block;
		margin-top: 70px;
		padding-top: 55px;
	}

	.bwb-intro__statement {
		position: static;
		margin-bottom: 55px;
		font-size: 30px;
	}

	.bwb-intro__body p:first-child {
		font-size: 21px;
	}

	.bwb-intro__body p:last-child {
		font-size: 14px;
	}

.bwb-tabs-wrap {
	top: 78px;
	overflow: hidden;
	box-shadow:
		0 10px 24px rgba(17, 17, 17, 0.06);
}

	.bwb-tabs {
		display: flex;
		width: 100%;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.bwb-tabs::-webkit-scrollbar {
		display: none;
	}

	.bwb-tab {
		flex: 0 0 160px;
		min-height: 72px;
		padding: 11px 14px;
	}

	.bwb-panel {
		padding: 80px 0 95px;
	}

	.bwb-panel__head {
		display: block;
	}

	.bwb-panel__number {
		margin-bottom: 42px;
		font-size: 70px;
	}

	.bwb-panel__title h2 {
		font-size: 43px;
	}

	.bwb-panel__lead {
		display: block;
		margin-top: 55px;
		padding: 38px 0;
	}

	.bwb-panel__lead strong {
		font-size: 23px;
	}

	.bwb-panel__lead p {
		margin-top: 26px;
		font-size: 14px;
	}

	.bwb-solution-grid,
	.bwb-process__list {
		display: block;
		margin-top: 60px;
	}

	.bwb-solution {
		min-height: 255px;
		padding: 28px 24px 34px;
	}

	.bwb-solution:hover {
		transform: none;
	}

	.bwb-solution span {
		margin-bottom: 52px;
	}

	.bwb-process {
		margin-top: 75px;
	}

	.bwb-process__head {
		display: block;
	}

	.bwb-process__head h3 {
		font-size: 36px;
	}

	.bwb-process__head p {
		margin-top: 22px;
	}

	.bwb-process__list li {
		min-height: 205px;
		padding: 27px 24px;
	}

	.bwb-panel__cta {
		display: block;
		margin-top: 70px;
		padding: 36px 25px;
	}

	.bwb-panel__cta p {
		font-size: 25px;
	}

	.bwb-panel__cta .bws-button {
		margin-top: 35px;
	}

	/* Work */
	.bww-manifesto {
		display: block;
		margin-top: 70px;
		padding-top: 55px;
	}

	.bww-manifesto__aside {
		margin-bottom: 52px;
		font-size: 30px;
	}

	.bww-manifesto__copy p:first-child {
		font-size: 21px;
	}

	.bww-manifesto__copy p:last-child {
		font-size: 14px;
	}

	.bww-filter-wrap {
		top: 66px;
	}

	.bww-filter {
		width: 100%;
	}

	.bww-filter button {
		min-height: 62px;
		padding: 0 19px;
	}

	.bww-archive {
		padding: 72px 0 105px;
	}

	.bww-archive__top {
		display: block;
		margin-bottom: 48px;
	}

	.bww-archive__top h2 {
		font-size: 40px;
	}

	.bww-archive__top p {
		margin-top: 20px;
	}

	.bww-grid {
		display: block;
	}

	.bww-card + .bww-card {
		margin-top: 52px;
	}

	.bww-card__visual {
		aspect-ratio: 1.05;
	}

	.bww-card__hover {
		display: none;
	}

	.bww-system__grid {
		display: block;
		margin-top: 70px;
	}

	.bww-system__statement {
		position: static;
		margin-bottom: 65px;
		font-size: 30px;
	}

	.bww-system__item {
		grid-template-columns: 40px 1fr;
		gap: 12px;
		padding: 42px 0;
	}

	/* Partners */
	.bwp-types {
		display: block;
		margin-top: 70px;
	}

	.bwp-type:hover {
		transform: none;
	}

	.bwp-type small {
		margin-bottom: 55px;
	}

	.bwp-type h3 {
		font-size: 31px;
	}

	.bwp-type p {
		font-size: 14px;
	}

	.bwp-ecosystem__lead {
		display: block;
		margin-top: 65px;
	}

	.bwp-ecosystem__lead p:first-child {
		font-size: 28px;
	}

	.bwp-ecosystem__lead p:last-child {
		margin-top: 28px;
		font-size: 14px;
	}

	.bwp-ecosystem__flow {
		display: block;
		margin-top: 70px;
	}

	.bwp-node {
		min-height: 300px;
		border-right: 1px solid rgba(255, 255, 255, 0.18);
	}

	.bwp-principles {
		display: block;
		margin-top: 70px;
	}

	.bwp-principle {
		min-height: 285px;
		padding: 30px 24px;
	}

	.bwp-principle span {
		margin-bottom: 58px;
	}

	.bwp-cta__inner {
		display: block;
	}

	.bwp-cta h2 {
		font-size: 43px;
	}

	.bwp-cta .bws-button {
		margin-top: 48px;
	}
}

@media (max-width: 380px) {
	.bws-container {
		width: calc(100% - 32px);
	}

	.bws-hero__title,
	.bws-display {
		font-size: 39px;
	}

	.bwb-panel__title h2 {
		font-size: 38px;
	}

	.bwp-cta h2 {
		font-size: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bws-page *,
	.bws-page *::before,
	.bws-page *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.bws-page [data-bws-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}
}


/* =========================================================
   V5 DENSITY / HERO ENHANCEMENT
========================================================= */
.bws-hero__content::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: clamp(110px, 12vw, 230px);
	height: 1px;
	background:
		linear-gradient(
			90deg,
			rgba(17, 17, 17, 0),
			rgba(17, 17, 17, 0.2)
		);
	transform: translateY(-50%);
	pointer-events: none;
}

.bws-hero__content::after {
	content: attr(data-ghost);
	position: absolute;
	top: 50%;
	right: 1%;
	z-index: -1;
	color: rgba(17, 17, 17, 0.025);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(90px, 14vw, 270px);
	font-weight: 800;
	line-height: 0.8;
	letter-spacing: -0.08em;
	transform: translateY(-50%);
	pointer-events: none;
}

.bws-section-head + .bwb-intro__grid,
.bws-section-head + .bww-manifesto,
.bws-section-head + .bwp-types {
	margin-top: clamp(70px, 7vw, 125px);
}


/* =========================================================
   WORK / WHAT WE LEAVE
========================================================= */
.bww-criteria {
	position: relative;
	overflow: hidden;
}

.bww-criteria::before {
	content: "";
	position: absolute;
	top: -280px;
	right: -210px;
	width: 620px;
	height: 620px;
	border: 1px solid rgba(17, 17, 17, 0.055);
	border-radius: 50%;
	pointer-events: none;
}

.bww-criteria__lead {
	position: relative;
	display: grid;
	grid-template-columns: minmax(330px, 0.85fr) minmax(520px, 1.15fr);
	gap: clamp(55px, 9vw, 170px);
	align-items: end;
	margin-top: clamp(70px, 7vw, 125px);
	padding: clamp(45px, 4.5vw, 75px) 0;
	border-top: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
}

.bww-criteria__lead p:first-child {
	font-size: clamp(27px, 2.3vw, 44px);
	font-weight: 650;
	line-height: 1.4;
	letter-spacing: -0.052em;
}

.bww-criteria__lead p:last-child {
	color: var(--bws-muted);
	font-size: clamp(14px, 0.95vw, 18px);
	line-height: 1.92;
}

.bww-criteria__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(65px, 6.5vw, 115px);
	border-top: 1px solid var(--bws-line);
	border-left: 1px solid var(--bws-line);
}

.bww-criterion {
	position: relative;
	min-height: 335px;
	padding: clamp(28px, 2.8vw, 50px);
	border-right: 1px solid var(--bws-line);
	border-bottom: 1px solid var(--bws-line);
	transition:
		background 0.4s ease,
		transform 0.55s cubic-bezier(.19, 1, .22, 1);
}

.bww-criterion:hover {
	z-index: 2;
	background: var(--bws-paper);
	transform: translateY(-8px);
}

.bww-criterion > span {
	display: block;
	margin-bottom: clamp(55px, 5vw, 85px);
	color: var(--bws-orange);
	font-family: "Montserrat", sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.bww-criterion h3 {
	margin-bottom: 20px;
	font-size: clamp(22px, 1.55vw, 30px);
	font-weight: 650;
	line-height: 1.35;
	letter-spacing: -0.047em;
}

.bww-criterion p {
	color: var(--bws-muted);
	font-size: 14px;
	line-height: 1.84;
}

@media (max-width: 1100px) {
	.bww-criteria__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.bws-hero__content::before,
	.bws-hero__content::after {
		display: none;
	}

	.bww-criteria__lead {
		display: block;
		margin-top: 65px;
		padding: 38px 0;
	}

	.bww-criteria__lead p:first-child {
		font-size: 24px;
	}

	.bww-criteria__lead p:last-child {
		margin-top: 27px;
		font-size: 14px;
	}

	.bww-criteria__grid {
		display: block;
		margin-top: 58px;
	}

	.bww-criterion {
		min-height: 270px;
		padding: 28px 24px 34px;
	}

	.bww-criterion:hover {
		transform: none;
	}

	.bww-criterion > span {
		margin-bottom: 52px;
	}
}

/* =========================================================
   BUSINESS TAB / PANEL GAP FIX
========================================================= */

/* PC */
@media (min-width: 761px) {
	.bwb-tabs-wrap {
		top: 92px;
	}

	.bwb-panels .bwb-panel {
		padding-top: 64px;
	}
}

/* 모바일 */
@media (max-width: 760px) {
	.bwb-tabs-wrap {
		top: 74px;
	}

	.bwb-panels .bwb-panel {
		padding-top: 42px;
	}
}

@media (max-width: 760px) {
	.bwp-type {
		min-height: 0;
		padding: 30px 24px 28px;
		overflow: visible;
	}

	.bwp-type p {
		max-width: none;
		padding-right: 0;
		font-size: 14px;
		line-height: 1.9;
		word-break: keep-all;
	}

	.bwp-type__meta {
		position: static;
		display: flex;
		justify-content: flex-end;
		width: 100%;
		margin-top: 28px;
		gap: 10px;
	}

	.bwp-type__meta span {
		min-width: 0;
		font-size: 8px;
		line-height: 1.4;
		text-align: right;
		white-space: normal;
	}

	.bwp-type__meta i {
		flex: 0 0 42px;
	}
}