/* ==========================================================================
   Kira Thuật Phong Thủy — main stylesheet
   Palette: son đỏ (#7a0c12) · kim hoàng (#c9a227) · ngọc bích (#1c604a) · mực (#16161f)
   ========================================================================== */

:root {
	--c-crimson: #7a0c12;
	--c-crimson-d: #5a070c;
	--c-gold: #c9a227;
	--c-gold-d: #a8851a;
	--c-jade: #1c604a;
	--c-ink: #16161f;
	--c-ink-soft: #2a2a36;
	--c-cream: #f7f3ea;
	--c-paper: #ffffff;
	--c-text: #24232b;
	--c-muted: #6c6a78;
	--c-line: #ece7dc;
	--c-bg: #faf7f1;
	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 18px 40px -22px rgba(30, 10, 12, .45);
	--shadow-sm: 0 8px 20px -12px rgba(30, 10, 12, .35);
	--container: 1180px;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-head: Georgia, "Times New Roman", "Be Vietnam Pro", serif;
	--gap: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-text);
	background: var(--c-bg);
	line-height: 1.7;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-crimson); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-gold-d); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--c-ink); line-height: 1.25; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

/* Accessibility ----------------------------------------------------------- */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--c-crimson); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 2px; }

/* Buttons ----------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
	border: 1.5px solid transparent; cursor: pointer; transition: all .22s ease; line-height: 1;
}
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--c-crimson); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--c-crimson-d); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--c-gold); color: #3a2c05; }
.btn-gold:hover { background: var(--c-gold-d); color: #2c2104; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.link-arrow { font-weight: 600; font-size: 15px; color: var(--c-crimson); }
.link-arrow:hover { color: var(--c-gold-d); }

/* Header ------------------------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--c-paper); box-shadow: 0 1px 0 var(--c-line); }
.topbar { background: var(--c-ink); color: #d8d4e2; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar a { color: var(--c-gold); }
.topbar-contact { display: flex; gap: 18px; align-items: center; }
.topbar-hours { color: #b7b3c4; }

.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 22px; }
.site-branding { flex: 0 0 auto; }
.custom-logo, .site-branding img { max-height: 56px; width: auto; }
.main-navigation { margin-left: auto; }
.nav-menu { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.nav-menu li { position: relative; }
.nav-menu a {
	display: block; padding: 10px 16px; color: var(--c-ink); font-weight: 600; font-size: 15.5px; border-radius: 8px;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-menu .current_page_item > a {
	color: var(--c-crimson); background: var(--c-cream);
}
.nav-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; list-style: none; margin: 0; padding: 8px;
	box-shadow: var(--shadow); border-radius: 12px; display: none; z-index: 30;
}
.nav-menu li:hover > .sub-menu { display: block; }
.header-cta { flex: 0 0 auto; }
.menu-toggle { display: none; }
.site-header.is-scrolled { box-shadow: 0 6px 20px -14px rgba(0, 0, 0, .5); }

/* Hero -------------------------------------------------------------------- */
.hero-slider { position: relative; overflow: hidden; background: var(--c-ink); }
.hero-track { position: relative; }
.hero-slide {
	display: none; min-height: 560px; background-size: cover; background-position: center;
	align-items: center;
}
.hero-slide.is-active { display: flex; animation: heroFade .8s ease; }
@keyframes heroFade { from { opacity: .3; } to { opacity: 1; } }
.hero-content { max-width: 640px; padding: 80px 22px; color: #fff; }
.hero-eyebrow {
	display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700;
	color: var(--c-gold); margin-bottom: 16px; border-left: 3px solid var(--c-gold); padding-left: 12px;
}
.hero-title { font-size: clamp(30px, 4.4vw, 50px); color: #fff; margin: 0 0 18px; }
.hero-desc { font-size: 18px; color: #ece9f2; margin: 0 0 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dot {
	width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7);
	background: transparent; cursor: pointer; padding: 0; transition: all .2s;
}
.hero-dot.is-active { background: var(--c-gold); border-color: var(--c-gold); transform: scale(1.2); }

/* Sections ---------------------------------------------------------------- */
section[class^="home-"], .home-categories, .home-latest, .home-services { padding: 72px 0; }
.home-categories { background: var(--c-cream); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; position: relative; }
.section-eyebrow {
	text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 700; color: var(--c-gold-d);
}
.section-title { font-size: clamp(26px, 3.2vw, 36px); margin: 10px 0 12px; }
.section-sub { color: var(--c-muted); margin: 0; }
.section-more { position: absolute; right: 0; bottom: 6px; font-weight: 600; }

/* Services grid ----------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.service-card {
	background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 30px 24px;
	box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-ico {
	display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
	font-size: 28px; border-radius: 16px; background: linear-gradient(135deg, var(--c-crimson), var(--c-crimson-d));
	margin-bottom: 18px;
}
.service-card h3 { font-size: 20px; margin: 0 0 10px; }
.service-card p { color: var(--c-muted); font-size: 15.5px; margin: 0 0 16px; }

/* Card grids -------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--gap); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.post-card {
	background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-media img { transform: scale(1.06); }
.post-card-cat {
	position: absolute; left: 14px; top: 14px; background: var(--c-crimson); color: #fff;
	font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
}
.post-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-title { font-size: 19.5px; margin: 0; line-height: 1.35; }
.post-card-title a { color: var(--c-ink); }
.post-card-title a:hover { color: var(--c-crimson); }
.post-card-meta { font-size: 13.5px; color: var(--c-muted); display: flex; align-items: center; gap: 8px; }
.post-card-meta .sep { opacity: .5; }
.post-card-excerpt { color: var(--c-muted); font-size: 15px; margin: 0; flex: 1; }

/* Category cards ---------------------------------------------------------- */
.cat-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); }
.cat-card:hover { box-shadow: var(--shadow); }
.cat-card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover .cat-card-media img { transform: scale(1.05); }
.cat-card-body { padding: 20px; }
.cat-card-body h3 { font-size: 19px; margin: 0 0 8px; }
.cat-card-body p { color: var(--c-muted); font-size: 14.5px; margin: 0 0 12px; }
.cat-count { font-size: 13px; color: var(--c-gold-d); font-weight: 600; }

/* CTA banner -------------------------------------------------------------- */
.cta-banner { background-size: cover; background-position: center; color: #fff; padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text { max-width: 620px; }
.cta-text h2 { color: #fff; font-size: clamp(24px, 3vw, 33px); margin: 0 0 12px; }
.cta-text p { color: #eee; margin: 0; }
.cta-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-phone { color: #fff; font-weight: 700; font-size: 18px; }
.cta-phone:hover { color: var(--c-gold); }

/* Page header (banner) ---------------------------------------------------- */
.page-header { background: var(--c-ink); background-size: cover; background-position: center; color: #fff; padding: 56px 0; }
.page-header-inner { max-width: 860px; }
.page-header-title { color: #fff; font-size: clamp(26px, 3.6vw, 40px); margin: 10px 0 8px; }
.page-header-title span { color: var(--c-gold); }
.page-header-sub { color: #e6e3ee; margin: 0; font-size: 17px; }

/* Breadcrumb -------------------------------------------------------------- */
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; font-size: 14px; }
.breadcrumb li { display: flex; align-items: center; color: rgba(255, 255, 255, .85); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: .55; }
.breadcrumb a { color: var(--c-gold); }
.page-header .breadcrumb [aria-current="page"] { color: #fff; }

/* Content layout ---------------------------------------------------------- */
.content-wrap { display: grid; gap: 48px; padding: 60px 22px; align-items: start; }
.content-wrap.has-sidebar { grid-template-columns: minmax(0, 1fr) 330px; }
.content-wrap.layout-full { grid-template-columns: minmax(0, 860px); justify-content: center; }
.site-main { min-width: 0; }

.entry-featured { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.entry-featured img { width: 100%; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--c-muted); font-size: 14.5px; margin-bottom: 22px; }
.entry-meta a { color: var(--c-crimson); }
.entry-meta .meta-cats a { font-weight: 600; }

.entry-content { font-size: 17.5px; }
.entry-content > * { margin-bottom: 1.3em; }
.entry-content h2 { font-size: 27px; margin: 1.8em 0 .6em; padding-bottom: .3em; border-bottom: 2px solid var(--c-line); }
.entry-content h3 { font-size: 21px; margin: 1.5em 0 .5em; color: var(--c-crimson); }
.entry-content p { margin: 0 0 1.3em; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin: 0 0 1.3em; }
.entry-content li { margin-bottom: .5em; }
.entry-content img { border-radius: var(--radius-sm); margin: 1.2em 0; }
.entry-content a { text-decoration: underline; text-decoration-color: rgba(122, 12, 18, .3); text-underline-offset: 3px; }
.entry-content blockquote {
	border-left: 4px solid var(--c-gold); background: var(--c-cream); margin: 1.5em 0; padding: 16px 24px;
	border-radius: 0 10px 10px 0; font-style: italic; color: #4a4854;
}

.entry-footer { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--c-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.entry-tags { font-size: 14.5px; }
.tag-label { font-weight: 700; color: var(--c-ink); }
.entry-share { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.entry-share a {
	padding: 6px 14px; border-radius: 999px; background: var(--c-cream); font-weight: 600; font-size: 13.5px;
}
.entry-share a:hover { background: var(--c-crimson); color: #fff; }

/* Related + nav ----------------------------------------------------------- */
.related-posts { margin-top: 52px; }
.related-posts .section-title { font-size: 24px; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 2px solid var(--c-line); }
.related-posts .card-grid { grid-template-columns: repeat(3, 1fr); }
.post-navigation { margin-top: 44px; display: flex; gap: 18px; }
.post-navigation .nav-links { display: flex; gap: 18px; width: 100%; }
.post-navigation a { flex: 1; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-sm); }
.post-navigation .nav-label { display: block; font-size: 13px; color: var(--c-muted); margin-bottom: 4px; }
.post-navigation .nav-title { font-weight: 600; color: var(--c-ink); }

/* Sidebar ----------------------------------------------------------------- */
.sidebar .widget { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 24px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.widget-title { font-size: 18px; margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-cream); position: relative; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 48px; height: 2px; background: var(--c-gold); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget_categories li, .widget li { padding: 7px 0; border-bottom: 1px dashed var(--c-line); display: flex; justify-content: space-between; }
.widget li:last-child { border-bottom: 0; }
.recent-list { display: flex; flex-direction: column; gap: 14px; }
.recent-item { display: flex; gap: 12px; border: 0 !important; padding: 0 !important; }
.recent-thumb { flex: 0 0 70px; }
.recent-thumb img { width: 70px; height: 56px; object-fit: cover; border-radius: 8px; }
.recent-body a { font-weight: 600; font-size: 14.5px; color: var(--c-ink); display: block; line-height: 1.4; }
.recent-body a:hover { color: var(--c-crimson); }
.recent-body time { font-size: 12.5px; color: var(--c-muted); }
.widget_cta { background: linear-gradient(160deg, var(--c-crimson), var(--c-crimson-d)) !important; color: #fff !important; border: 0 !important; }
.widget_cta .widget-title { color: #fff; border-color: rgba(255, 255, 255, .25); }
.widget_cta p { color: #f3e9ea; font-size: 15px; }

/* Search form ------------------------------------------------------------- */
.search-form { display: flex; gap: 0; }
.search-field {
	flex: 1; padding: 12px 16px; border: 1.5px solid var(--c-line); border-right: 0;
	border-radius: 999px 0 0 999px; font-size: 15px; font-family: inherit; min-width: 0;
}
.search-field:focus { outline: none; border-color: var(--c-gold); }
.search-submit { border: 0; background: var(--c-crimson); color: #fff; padding: 0 20px; border-radius: 0 999px 999px 0; cursor: pointer; font-size: 16px; }
.search-submit:hover { background: var(--c-crimson-d); }

/* Pagination -------------------------------------------------------------- */
.pagination { margin-top: 44px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px;
	border-radius: 10px; background: #fff; border: 1px solid var(--c-line); font-weight: 600; color: var(--c-ink);
}
.pagination .page-numbers.current { background: var(--c-crimson); color: #fff; border-color: var(--c-crimson); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--c-gold); color: var(--c-crimson); }

/* No results / 404 -------------------------------------------------------- */
.no-results, .error-404 { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 48px; text-align: center; box-shadow: var(--shadow-sm); }
.no-results .search-form, .error-404 .search-form { max-width: 440px; margin: 24px auto; }
.error-code { font-family: var(--font-head); font-size: 90px; color: var(--c-gold); margin: 0; line-height: 1; }
.error-cats { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 18px 0 28px; }
.error-cats a { background: var(--c-cream); padding: 8px 18px; border-radius: 999px; font-weight: 600; }

/* Comments ---------------------------------------------------------------- */
.comments-area { margin-top: 52px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.comments-title { font-size: 22px; margin: 0 0 22px; }
.comment-list { list-style: none; margin: 0 0 28px; padding: 0; }
.comment-list .comment { border-bottom: 1px solid var(--c-line); padding: 18px 0; }
.comment-list .children { list-style: none; margin-left: 32px; }
.comment-respond .comment-form { display: grid; gap: 14px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: 10px; font-family: inherit; font-size: 15px;
}
.comment-form textarea:focus, .comment-form input:focus { outline: none; border-color: var(--c-gold); }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--c-ink); color: #c8c4d4; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1fr; gap: 40px; padding: 60px 22px 40px; }
.footer-logo { max-height: 54px; width: auto; margin-bottom: 16px; }
.footer-about p { font-size: 14.5px; color: #aaa6b8; }
.site-footer .widget-title { color: #fff; border-color: rgba(255, 255, 255, .14); }
.footer-menu, .footer-cats, .contact-list { list-style: none; margin: 0; padding: 0; }
.footer-menu li, .footer-cats li { padding: 6px 0; }
.footer-menu a, .footer-cats a { color: #c0bccd; font-size: 14.5px; }
.footer-menu a:hover, .footer-cats a:hover { color: var(--c-gold); }
.contact-list li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; color: #bdb9ca; align-items: flex-start; }
.contact-list a { color: #bdb9ca; }
.contact-list a:hover { color: var(--c-gold); }
.contact-list .ico { color: var(--c-gold); flex: 0 0 auto; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; font-size: 13.5px; color: #9b97a9; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1024px) {
	.services-grid, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.content-wrap.has-sidebar { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.header-cta { display: none; }
	.menu-toggle {
		display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
		width: 46px; height: 42px; background: var(--c-cream); border: 1px solid var(--c-line); border-radius: 10px; cursor: pointer; margin-left: auto;
	}
	.menu-toggle-bar, .menu-toggle-bar::before, .menu-toggle-bar::after {
		content: ""; display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 0 auto; position: relative;
	}
	.menu-toggle-bar::before { position: absolute; top: -7px; }
	.menu-toggle-bar::after { position: absolute; top: 7px; }
	.main-navigation { margin-left: 0; position: absolute; top: 100%; left: 0; right: 0; }
	.nav-menu {
		flex-direction: column; background: #fff; box-shadow: var(--shadow); padding: 10px; gap: 2px;
		max-height: 0; overflow: hidden; transition: max-height .3s ease; border-top: 1px solid var(--c-line);
	}
	.main-navigation.is-open .nav-menu { max-height: 80vh; overflow: auto; }
	.nav-menu .sub-menu { position: static; box-shadow: none; display: block; padding-left: 14px; }
	.header-inner { flex-wrap: wrap; }
	.hero-slide { min-height: 460px; }
	.hero-content { padding: 56px 22px; }
	.card-grid-3, .card-grid-2, .related-posts .card-grid { grid-template-columns: 1fr; }
	.post-navigation .nav-links { flex-direction: column; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
	body { font-size: 16px; }
	.services-grid, .card-grid-4 { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr; gap: 28px; }
	.topbar-hours { display: none; }
	.section-more { position: static; display: inline-block; margin-top: 8px; }
	.content-wrap, .footer-top { padding-left: 18px; padding-right: 18px; }
	.no-results, .error-404, .comments-area { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
}


/* KIRA_LOGO_REFRESH_START */
.site-logo img,.navbar-brand img,.custom-logo-link img,img.custom-logo{height:75px!important;width:auto!important;max-width:min(300px,48vw)!important;object-fit:contain!important;}
.site-footer img.flogo,footer img[src*='logo-light-kira-'],footer img[src*='logo-light.png']{height:69px!important;width:auto!important;max-width:min(290px,55vw)!important;object-fit:contain!important;}
@media(max-width:680px){.site-logo img,.navbar-brand img,.custom-logo-link img,img.custom-logo{height:58px!important;max-width:62vw!important}.site-footer img.flogo,footer img[src*='logo-light-kira-'],footer img[src*='logo-light.png']{height:54px!important;max-width:70vw!important}}
/* KIRA_LOGO_REFRESH_END */
