/* ============================================================
   Dainu Devis — custom layer over Gilber base
   Accent: #cf000f (signal red)
   ============================================================ */

:root {
	--dd-accent: #cf000f;
	--dd-accent-soft: rgba(207, 0, 15, 0.35);
	--dd-line: rgba(255, 255, 255, 0.08);
	--dd-white: #f5f5f0;
	--dd-muted: #767676;
}

/* ---------- Logo (SVG lockup) ---------- */
.dd-logo { display: inline-block; transition: opacity 0.3s ease; }
.dd-logo:hover { opacity: 0.85; }
.vlt-navbar .vlt-navbar-logo img.dd-logo-img { height: 2.5rem; width: auto; display: block; }
.dd-footer .dd-logo-img { height: 7.5rem; width: auto; display: block; }
@media only screen and (max-width: 1439px) {
	.vlt-navbar .vlt-navbar-logo img.dd-logo-img { height: 2rem; }
}

/* ---------- Nav menu: right-aligned, clears the logo ---------- */
.vlt-navbar .vlt-navbar-inner--center { justify-content: flex-end; }
.vlt-navbar .vlt-navbar-inner--center .container { margin: 0; width: auto; max-width: none; padding-right: 13.75rem; }
@media only screen and (max-width: 1699px) {
	.vlt-default-menu__navigation .sf-menu > li + li { margin-left: 2rem; }
}

/* ---------- GHL enquiry form embed ---------- */
.dd-ghl-form { min-height: 700px; }
.dd-ghl-form iframe { display: block; background: transparent; min-height: 700px; }

/* ---------- Inline flow diagrams ---------- */
.dd-flow { max-width: 760px; }
.dd-flow svg { width: 100%; height: auto; display: block; }

/* ---------- Eyebrow ---------- */
.dd-eyebrow {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9a9a9a;
	display: block;
}
.dd-eyebrow .sep { color: var(--dd-accent); margin: 0 0.55em; }

/* ---------- Hero portrait ---------- */
.dd-hero-portrait {
	position: absolute;
	right: 0;
	top: 5rem;
	bottom: 0;
	width: 42%;
	max-width: 620px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
	line-height: 0;
	z-index: 1;
}
.dd-hero-portrait img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	/* left/top feather is baked into dainu-portrait-blend.webp; CSS only dims the viewport edge */
	-webkit-mask-image: linear-gradient(to right, #000 82%, rgba(0, 0, 0, 0.35) 100%);
	mask-image: linear-gradient(to right, #000 82%, rgba(0, 0, 0, 0.35) 100%);
	filter: brightness(0.86) saturate(0.94) contrast(1.03);
	opacity: 0.94;
}
/* ambient accent glow behind the portrait ties photo and background together */
.dd-hero-portrait::before {
	content: '';
	position: absolute;
	right: 4%;
	top: 12%;
	width: 78%;
	height: 72%;
	background: radial-gradient(closest-side, rgba(207, 0, 15, 0.14), transparent 72%);
}
@media only screen and (max-width: 1439px) {
	.dd-hero-portrait { width: 40%; }
}
@media only screen and (max-width: 1199px) {
	.dd-hero-portrait { width: 52%; opacity: 0.45; }
}
@media only screen and (max-width: 767px) {
	.dd-hero-portrait { width: 90%; opacity: 0.25; }
}

/* ---------- Motion: Gilber-style ken burns and cues ---------- */
/* Hero portrait zooms out slowly when the section becomes active */
.dd-hero-portrait img {
	-webkit-transform: scale(1.08);
	transform: scale(1.08);
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
	-webkit-transition: -webkit-transform 2.5s;
	transition: transform 2.5s;
	will-change: transform;
}
.vlt-section.active .dd-hero-portrait img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 5s;
	transition: transform 5s;
}

/* Section backgrounds drift slowly so the page always breathes */
@keyframes dd-drift {
	from { transform: scale(1) translateX(0); }
	to { transform: scale(1.12) translateX(-2%); }
}
.vlt-section__ken-burn-background img {
	animation: dd-drift 45s ease-in-out infinite alternate;
}

/* Pulsing scroll hint (echoes the template video-button pulse) */
.dd-scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 2.25rem;
	z-index: 3;
	width: 36px;
	height: 36px;
	transform: translateX(-50%);
}
.dd-scroll-hint span {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--dd-accent);
}
.dd-scroll-hint::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--dd-accent);
	animation: dd-pulse 2.2s infinite ease-out;
}
@keyframes dd-pulse {
	0% { transform: scale(0.3); opacity: 0.45; }
	70% { transform: scale(1.2); opacity: 0; }
	100% { transform: scale(1.2); opacity: 0; }
}

/* ---------- Proof strip ---------- */
.dd-proof-strip {
	position: relative;
	z-index: 3;
	margin-top: 4.5rem;
	border-top: 1px solid var(--dd-line);
	border-bottom: 1px solid var(--dd-line);
	background: rgba(20, 20, 20, 0.55);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.dd-proof-strip ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}
.dd-proof-strip li {
	flex: 1 1 0;
	padding: 1.35rem 1.5rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #9a9a9a;
	border-left: 1px solid var(--dd-line);
}
.dd-proof-strip li:first-child { border-left: none; }
.dd-proof-strip li strong {
	display: block;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.15rem;
}
@media only screen and (max-width: 1199px) {
	.dd-proof-strip ul { flex-wrap: wrap; }
	.dd-proof-strip li { flex: 1 1 33.333%; border-top: 1px solid var(--dd-line); }
}
@media only screen and (max-width: 767px) {
	.dd-proof-strip { margin-top: 3rem; }
	.dd-proof-strip li { flex: 1 1 50%; padding: 1rem; }
}

/* ---------- Section number ---------- */
.dd-num {
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--dd-accent);
	display: block;
	margin-bottom: 1.5rem;
}

/* ---------- Cards ---------- */
.dd-card {
	position: relative;
	height: 100%;
	padding: 2.5rem 2.25rem;
	border: 1px solid var(--dd-line);
	transition: border-color 0.35s ease, transform 0.35s ease;
	background: rgba(255, 255, 255, 0.012);
}
.dd-card:hover { border-color: var(--dd-accent-soft); transform: translateY(-4px); }
.dd-card h3 { margin-bottom: 1rem; }
.dd-card p { font-size: 0.9375rem; margin-bottom: 0; }
.dd-card .dd-card-num {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--dd-accent);
	margin-bottom: 1.75rem;
	letter-spacing: 0.1em;
}
a.dd-card { display: block; color: inherit; }
a.dd-card .dd-card-cta {
	display: inline-block;
	margin-top: 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}
a.dd-card:hover .dd-card-cta { color: var(--dd-accent); }

/* ---------- Platform list ---------- */
.dd-platform-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.dd-platform-list li {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
}
.dd-platform-list li small {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--dd-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 0.2rem;
}

/* ---------- Inner page hero ---------- */
.dd-page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 62vh;
	padding: 12rem 0 5rem;
	overflow: hidden;
}
.dd-page-hero .jarallax-img,
.dd-page-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
.dd-page-hero h1 {
	font-size: 4.375rem;
	font-weight: 600;
	line-height: 1.08;
	margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
	.dd-page-hero { min-height: 50vh; padding-top: 9rem; }
	.dd-page-hero h1 { font-size: 2.75rem; }
}
.dd-page-hero .dd-eyebrow { margin-bottom: 1.5rem; }
.dd-page-hero .dd-subheading {
	font-size: 1.25rem;
	line-height: 1.6;
	color: #b9b9b4;
	max-width: 40rem;
	margin-top: 1.75rem;
	margin-bottom: 0;
}

/* ---------- Horizontal rule ---------- */
.dd-rule {
	border: none;
	border-top: 1px solid var(--dd-line);
	margin: 0;
}

/* ---------- Numbered blocks (principles / disciplines) ---------- */
.dd-step { padding: 2.75rem 0; border-top: 1px solid var(--dd-line); }
.dd-step:last-child { border-bottom: 1px solid var(--dd-line); }
.dd-step .dd-step-num {
	font-size: 2.375rem;
	font-weight: 600;
	line-height: 1;
	color: var(--dd-accent);
}
.dd-step h3 { margin-bottom: 0.75rem; }
.dd-step p { margin-bottom: 0; font-size: 0.9375rem; }

/* ---------- Definition rows (engagements) ---------- */
.dd-def { margin-bottom: 1.75rem; }
.dd-def .dd-def-h {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dd-accent);
	margin-bottom: 0.5rem;
}
.dd-def p { margin-bottom: 0; }

/* ---------- Engagement / venture panels ---------- */
.dd-panel {
	border: 1px solid var(--dd-line);
	padding: 3.5rem 3rem;
	background: rgba(255, 255, 255, 0.012);
}
@media only screen and (max-width: 767px) {
	.dd-panel { padding: 2rem 1.5rem; }
}
.dd-panel + .dd-panel { margin-top: 2.5rem; }
.dd-panel .dd-panel-type {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dd-muted);
	display: block;
	margin-bottom: 1rem;
}

/* ---------- Route cards (Engage) ---------- */
.dd-route {
	display: block;
	height: 100%;
	padding: 2.75rem 2.5rem;
	border: 1px solid var(--dd-line);
	color: inherit;
	transition: border-color 0.35s ease, background 0.35s ease;
}
.dd-route:hover { border-color: var(--dd-accent-soft); background: rgba(207, 0, 15, 0.05); }
.dd-route h3 { margin-bottom: 0.85rem; }
.dd-route p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
.dd-route .dd-route-cta {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
}
.dd-route:hover .dd-route-cta { color: var(--dd-accent); }

/* ---------- Full footer (inner pages) ---------- */
.dd-footer {
	border-top: 1px solid var(--dd-line);
	padding: 5rem 0 2.5rem;
	background: #131313;
}
.dd-footer .dd-footer-h {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9a9a9a;
	margin-bottom: 1.35rem;
}
.dd-footer ul { list-style: none; margin: 0; padding: 0; }
.dd-footer ul li { margin-bottom: 0.6rem; }
.dd-footer ul a { font-size: 0.9375rem; color: var(--dd-muted); }
.dd-footer ul a:hover { color: #fff; }
.dd-footer ul li span { font-size: 0.9375rem; color: var(--dd-muted); }
.dd-footer .dd-footer-position {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #b9b9b4;
	max-width: 26rem;
}
.dd-footer .dd-footer-legal {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--dd-line);
	font-size: 0.8125rem;
	color: #5d5d5d;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 2rem;
	justify-content: space-between;
}
.dd-footer .dd-footer-legal p { margin: 0; }

/* ---------- Forms ---------- */
.vlt-contact-form select {
	width: 100%;
	padding: 0.9rem 0;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--dd-muted);
	font-size: 1rem;
	outline: none;
}
.vlt-contact-form select:focus { border-bottom-color: var(--dd-accent); }
.vlt-contact-form select option { background: #161616; color: #ccc; }

/* ---------- Reduced motion (accessibility) ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001s !important;
		transition-duration: 0.001s !important;
	}
	.vlt-animated-block { opacity: 1 !important; transform: none !important; }
	body.animsition { opacity: 1 !important; }
}

/* ---------- Ghost button ---------- */
.vlt-btn--ghost {
	background: transparent;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
	color: #fff;
}
.vlt-btn--ghost:hover {
	-webkit-box-shadow: inset 0 0 0 1px var(--dd-accent);
	box-shadow: inset 0 0 0 1px var(--dd-accent);
	background: rgba(207, 0, 15, 0.08);
	color: #fff;
}

/* ---------- Hero title ---------- */
.dd-hero-title {
	font-size: 4.4rem;
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.015em;
}
@media only screen and (max-width: 1439px) {
	.dd-hero-title { font-size: 3.5rem; }
}
@media only screen and (max-width: 767px) {
	.dd-hero-title { font-size: 2.3rem; }
}
.dd-hero-sub,
[data-anchor] p.dd-hero-sub {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #b9b9b4;
	max-width: 40rem;
}
[data-anchor] p.dd-portrait-caption { max-width: none; }
[data-anchor] p.dd-lead,
.vlt-section .dd-lead { max-width: 44rem; font-size: 1.1875rem; }
.vlt-project-excerpt { max-width: 46rem; }
.vlt-project-excerpt p { max-width: 46rem; }

/* ---------- Read more link (generic) ---------- */
.vlt-read-more-link {
	font-size: 0.9375rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
}
.vlt-read-more-link:not(:hover) { color: #fff; }
.vlt-read-more-link svg {
	height: 10px;
	width: auto;
	margin-left: 0.625rem;
	transition: transform 300ms;
}
.vlt-read-more-link:hover svg { transform: translateX(5px); }

/* ---------- Equal height card rows ---------- */
@media only screen and (min-width: 768px) {
	.dd-equal [class*='col-'] > .vlt-animated-block { height: 100%; }
	.dd-equal .dd-card, .dd-equal .dd-route { height: 100%; }
}
@media only screen and (max-width: 767px) {
	.dd-equal [class*='col-'] + [class*='col-'] { margin-top: 1.875rem; }
}

/* ---------- Misc ---------- */
.dd-max-60 { max-width: 60rem; }
.dd-max-46 { max-width: 46rem; }
.dd-lead { font-size: 1.1875rem; line-height: 1.75; color: #b9b9b4; }
.dd-contact-lines a { color: #b9b9b4; }
.dd-contact-lines a:hover { color: var(--dd-accent); }
.dd-contact-lines i { color: var(--dd-accent); margin-right: 0.75rem; }
.dd-contact-lines p { margin-bottom: 0.65rem; }
.dd-contact-note {
	font-size: 0.8125rem;
	color: var(--dd-muted);
	letter-spacing: 0.04em;
}
.dd-footer-contact-note {
	font-size: 0.8125rem;
	color: var(--dd-muted);
	line-height: 1.5;
	display: block;
	margin-bottom: 0.35rem;
}

.dd-quote-mark { height: 60px; color: var(--dd-accent); }

/* Section label row: number + rule */
.dd-section-head { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
.dd-section-head .dd-num { margin-bottom: 0; white-space: nowrap; }
.dd-section-head .line { flex: 1 1 auto; height: 1px; background: var(--dd-line); }

/* Keep fullpage sections breathable on laptop heights */
.vlt-section__content { width: 100%; }

/* Portrait caption under hero buttons */
.dd-portrait-caption {
	font-size: 0.8125rem;
	color: var(--dd-muted);
	letter-spacing: 0.04em;
}

/* ---------- AEO answer block ---------- */
.dd-answer {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #9a9a9a;
	border-left: 2px solid var(--dd-accent);
	padding-left: 1.25rem;
	max-width: 46rem;
	margin-bottom: 0;
}

/* ---------- Card / panel icons ---------- */
.dd-card-icon {
	display: block;
	font-size: 1.875rem;
	line-height: 1;
	color: var(--dd-accent);
	margin-bottom: 1.75rem;
}
.dd-panel { position: relative; }
.dd-panel-icon {
	position: absolute;
	top: 3.25rem;
	right: 3rem;
	font-size: 2rem;
	line-height: 1;
	color: var(--dd-accent);
	opacity: 0.85;
}
@media only screen and (max-width: 767px) {
	.dd-panel-icon { top: 2rem; right: 1.5rem; font-size: 1.5rem; }
}

/* ---------- Method diagram ---------- */
.dd-diagram {
	border: 1px solid var(--dd-line);
	padding: 2.5rem;
	background: rgba(255, 255, 255, 0.012);
}
.dd-diagram svg { width: 100%; height: auto; display: block; }
@media only screen and (max-width: 767px) {
	.dd-diagram { padding: 1.25rem; }
}

/* ---------- Post title / byline ---------- */
.dd-post-title { font-size: 3rem; line-height: 1.2; }
@media only screen and (max-width: 767px) {
	.dd-post-title { font-size: 2rem; }
}
.dd-byline {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 0;
}
.dd-byline-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
	border: 1px solid var(--dd-line);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--dd-accent);
	letter-spacing: 0.06em;
}
.dd-byline-name { margin: 0; font-size: 0.9375rem; color: #fff; }
.dd-byline-role { margin: 0; font-size: 0.8125rem; color: var(--dd-muted); }

/* ---------- Prose (article body) ---------- */
.dd-prose {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #a5a5a0;
}
.dd-prose p { margin-bottom: 1.5rem; }
.dd-prose h2 {
	font-size: 1.875rem;
	line-height: 1.35;
	margin: 3rem 0 1.25rem;
}
.dd-prose h3 {
	font-size: 1.375rem;
	line-height: 1.4;
	margin: 2.5rem 0 1rem;
}
.dd-prose h2:first-child, .dd-prose h3:first-child { margin-top: 0; }
.dd-prose blockquote {
	margin: 2.5rem 0;
	padding: 0.5rem 0 0.5rem 1.75rem;
	border-left: 2px solid var(--dd-accent);
	font-size: 1.1875rem;
	line-height: 1.7;
	color: #d5d5d0;
}
.dd-prose blockquote p { margin-bottom: 0.75rem; }
.dd-prose blockquote p:last-child { margin-bottom: 0; }
.dd-prose ul, .dd-prose ol { margin: 0 0 1.5rem 1.25rem; padding: 0; }
.dd-prose li { margin-bottom: 0.6rem; }
.dd-prose strong { color: #e8e8e3; font-weight: 600; }
.dd-prose em { color: #c5c5c0; }
.dd-prose a { color: var(--dd-accent); }
.dd-prose a:hover { color: #6f93d8; }
.dd-prose hr { border: none; border-top: 1px solid var(--dd-line); margin: 3rem 0; }
.dd-prose table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.9375rem; }
.dd-prose th, .dd-prose td { border: 1px solid var(--dd-line); padding: 0.6rem 0.9rem; text-align: left; }
.dd-prose th { color: #fff; font-weight: 600; }

/* ---------- Interview Q&A ---------- */
.dd-qa { padding: 3rem 0; border-top: 1px solid var(--dd-line); }
.dd-qa:last-of-type { border-bottom: 1px solid var(--dd-line); }
.dd-qa-question {
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 1.5rem;
}
.dd-qa-answer { font-size: 1rem; }
@media only screen and (max-width: 991px) {
	.dd-qa .dd-step-num { display: block; margin-bottom: 1rem; }
}

/* Insights / article list */
.dd-article {
	display: block;
	padding: 2.25rem 0;
	border-top: 1px solid var(--dd-line);
	color: inherit;
}
.dd-article:last-of-type { border-bottom: 1px solid var(--dd-line); }
.dd-article h3 { margin-bottom: 0.5rem; transition: color 0.3s ease; }
.dd-article:hover h3 { color: var(--dd-accent); }
.dd-article p { font-size: 0.9375rem; margin-bottom: 0; }
.dd-article .dd-article-meta {
	font-size: 0.8125rem;
	color: var(--dd-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.6rem;
}

/* ---------- Utilities ---------- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* Honeypot field: hidden from humans, present for bots */
.dd-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* ---------- Article FAQ accordion ---------- */
.dd-faq { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--dd-line); }
.dd-faq h2 { font-size: 1.5rem; line-height: 1.35; margin: 0 0 1.5rem; }
.dd-faq details {
	border-bottom: 1px solid var(--dd-line);
	padding: 0.25rem 0;
}
.dd-faq summary {
	cursor: pointer;
	list-style: none;
	padding: 1.15rem 2rem 1.15rem 0;
	position: relative;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--dd-white);
	transition: color 0.3s ease;
}
.dd-faq summary::-webkit-details-marker { display: none; }
.dd-faq summary:hover { color: var(--dd-accent); }
.dd-faq summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	color: var(--dd-accent);
}
.dd-faq details[open] summary::after { content: '\2013'; }
.dd-faq details p {
	margin: 0 0 1.35rem;
	padding-right: 2rem;
	font-size: 1rem;
	line-height: 1.8;
	color: #a5a5a0;
}
