/* ============================================================
   B2Bindex Base CSS
   Единая дизайн-система проекта
   ============================================================ */

@font-face {
       font-family: 'Inter';
       src: url('/wp-content/uploads/fonts/inter/Inter-Regular.woff2') format('woff2');
       font-weight: 400;
       font-style: normal;
       font-display: swap;
   }
   
   @font-face {
       font-family: 'Inter';
       src: url('/wp-content/uploads/fonts/inter/Inter-Medium.woff2') format('woff2');
       font-weight: 500;
       font-style: normal;
       font-display: swap;
   }
   
   @font-face {
       font-family: 'Inter';
       src: url('/wp-content/uploads/fonts/inter/Inter-SemiBold.woff2') format('woff2');
       font-weight: 600;
       font-style: normal;
       font-display: swap;
   }
   
   @font-face {
       font-family: 'Inter';
       src: url('/wp-content/uploads/fonts/inter/Inter-Bold.woff2') format('woff2');
       font-weight: 700;
       font-style: normal;
       font-display: swap;
   }

/* =============================
   1. Spacing tokens
   ============================= */

:root {
--space-10: 1rem;
--space-15: 1.5rem;
--space-20: 2rem;
--space-25: 2.5rem;
--space-30: 3rem;
--space-35: 3.5rem;
--space-40: 4rem;
--space-45: 4.5rem;
--space-50: 5rem;
--space-60: 6rem;
--space-70: 7rem;
--space-80: 8rem;
--space-90: 9rem;
--space-100: 10rem;
--space-200: 20rem;
}


/* =============================
  2. Line-height
  ============================= */

:root {
--line-height-1: 1;
--line-height-1-1: 1.1;
--line-height-1-2: 1.2;
--line-height-1-3: 1.3;
--line-height-1-4: 1.4;
--line-height-1-5: 1.5;
--line-height-1-6: 1.6;
--line-height-2: 2;
--line-height-3: 3;
}


/* =============================
  3. Font-size
  ============================= */

:root {
--font-size-10: 1rem;
--font-size-11: 1.1rem;
--font-size-12: 1.2rem;
--font-size-13: 1.3rem;
--font-size-14: 1.4rem;
--font-size-15: 1.5rem;
--font-size-16: 1.6rem;
--font-size-18: 1.8rem;
--font-size-20: 2rem;
--font-size-24: 2.4rem;
--font-size-28: 2.8rem;
--font-size-32: 3.2rem;
--font-size-38: 3.8rem;
--font-size-42: 4.2rem;
--font-size-48: 4.8rem;
--font-size-52: 5.2rem;
--font-size-58: 5.8rem;
--font-size-68: 6.8rem;
--font-size-80: 8rem;
--font-size-90: 9rem;
--font-size-100: 10rem;
}


/* ============================================================
  4. Colors (light / dark)
  ============================================================ */

:root {
 /* Backgrounds */
 --color-bg: #ffffff;
 --color-bg-soft: #f5f5f7;
 --color-bg-elevated: #ffffff;
 --color-bg-img: #ffffff;

 /* Borders */
 --border: #dddddd;
 --border-light: #E2E1E4;
 --border-img: 1px solid #E2E1E4;

 /* Text hierarchy */
 --logo-color: #000000;
 --color-title: #111111;
 --color-text: #242425;
 --color-text-light: #7A7A7B;
 --color-text-light-soft: #242425;

 /* Links / brand */
 --color-link: #1a72ff;
 --color-link-hover: #1250b3;
 --color-link-mono: #242425;
 --color-link-mono-hover: #7A7A7B;

 /* Accents */
 --color-primary: #1a72ff;
 --color-primary-soft: #e3edff;
 
 --color-verified: #1a72ff;

 --color-accent: #ffb400;
 --color-accent-soft: #fff3cc;
 
 --logo-bg: #f5f5f5;
 --photo-bg: transparent;
}

:root[data-theme="dark"] {
 /* Backgrounds */
 --color-bg: #1F1F1F;
 /* --color-bg: #151515; */
 --color-bg-soft: #2a2a2a;
 --color-bg-elevated: #292929;
 --color-bg-img: #ffffff;

 /* Borders */
 --border: #3A3A3A;
 --border-light: #363439;
 --border-img: none;

 /* Text hierarchy */
 --logo-color: #ffffff;
 --color-title: #ffffff;
 --color-text: #DCDCDC;
 --color-text-light: #959595;
 --color-text-light-soft: #DCDCDC;
 

 /* Links / brand */
 --color-link: #4c8dff;
 --color-link-hover: #86a9ff;
 --color-link-mono: #ffffff;
 --color-link-mono-hover: #DCDCDC;

 /* Accents */
 --color-primary: #4c8dff;
 --color-primary-soft: #182339;
 
 --color-verified: #ffffff;

 --color-accent: #ffcf4a;
 --color-accent-soft: #3a3115;
 

}

:root {
--header-height: 84px;
}
@media (max-width: 767px) {
  :root {
  --header-height: 64px;
  }
}


/* ============================================================
  5. Base elements
  ============================================================ */

html {
 font-size: 10px; /* 1rem = 10px */
}

body {
 margin: 0;
 /* font-family: "Graphik", system-ui, sans-serif; */
 /* font-family: system-ui,
 -apple-system, BlinkMacSystemFont,
 "SF Pro Text", "SF Pro Display",
 "Segoe UI",
 "Noto Sans",
 "Ubuntu", "Cantarell", "Liberation Sans",
 Arial,
 sans-serif; */
 font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter,Helvetica,Arial,sans-serif;
 font-size: var(--font-size-15);
 line-height: 1.5;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
 background-color: var(--color-bg);
 color: var(--color-text);
 font-weight: 400;
 letter-spacing: -.01em;
}
@media (max-width: 767px) {
	body {
		font-size: var(--font-size-15);
	}
}

/* Заголовки. Никаких алиасов, только твои var и прямые значения */

h1,
h2,
h3,
h4,
h5,
h6 {
 margin: 0 0 var(--space-20);
 letter-spacing: -.03em;
 color: var(--color-title);
 font-weight: 600;
}


h1 { font-size: var(--font-size-42); line-height: 1.2; }
h2 { font-size: var(--font-size-32); line-height: 1.4; }
h3 { font-size: var(--font-size-24); line-height: 1.4; }
h4 { font-size: var(--font-size-20); line-height: 1.4; }
h5 { font-size: var(--font-size-18); line-height: 1.4; }
h6 { font-size: var(--font-size-16); line-height: 1.4; }

@media (max-width: 991px) {
	h1 { font-size: var(--font-size-28);  }
	h2 { font-size: var(--font-size-24);  }
	h3 { font-size: var(--font-size-20);  }
	h4 { font-size: var(--font-size-18);  }
	h5 { font-size: var(--font-size-16);  }
	h6 { font-size: var(--font-size-14);  }
}


/* ============================================================
  6. Breakpoints (без переменных, только числа)
  ============================================================ */

/* > 1440px — крупные десктопы */
@media (min-width: 1441px) {
 /* ...докручиваешь, когда понадобится... */
}

/* ≤ 1280px — ноутбуки / маленькие десктопы */
@media (max-width: 1280px) {
 /* пример:
 h1 { font-size: var(--bm-font-size-38); }
 */
}

/* ≤ 991px — планшеты */
@media (max-width: 991px) {
 /* ... */
}

/* ≤ 767px — мобилки */
@media (max-width: 767px) {
 /* ... */
}

/* ≤ 478px — самые узкие экраны */
@media (max-width: 478px) {
 /* ... */
}


/* ============================================================
  7. UX / Bricks / Theme switching
  ============================================================ */

html,
body {
 background-color: var(--color-bg);
}

body.brx-body {
 overflow-x: hidden !important;
}

body.bricks-is-frontend :focus {
 outline: none;
}

/* во время переключения темы отключаем все анимации и переходы */
html.theme-changing,
html.theme-changing *,
html.theme-changing *::before,
html.theme-changing *::after {
 transition-property: none !important;
 transition-duration: 0s !important;
 transition-delay: 0s !important;
 animation-duration: 0s !important;
 animation-delay: 0s !important;
}

a {
 color: var(--color-link-mono);
 text-decoration-color: transparent;
 transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
 color: var(--color-link-mono-hover);
 text-decoration-color: currentColor;
}

.links-mono a, a.links-mono {
  color: var(--color-link-mono);
}
.links-mono a:hover, a:hover.links-mono, a.links-mono:hover {
  color: var(--color-link-mono-hover);
}

strong {
 font-weight: 600;
}


/* ============================================================
  8. iOS zoom fix
  ============================================================ */

@media (max-width: 767px) {
 input,
 textarea,
 select,
 button {
   font-size: 16px;
   line-height: 1.2;
   -webkit-text-size-adjust: 100%;
 }

 .small-visual input,
 .small-visual textarea,
 .small-visual select,
 .small-visual button {
   font-size: 16px;
   transform-origin: left center;
   transform: scale(0.9375);
 }
}


main {
margin-top: var(--header-height);
}

@media (max-width:768px){
  main {
  margin-top: var(--header-height);
  }
}




.bm-header {
 z-index: 9999;
 background-color: var(--color-bg);
 border-bottom: 1px solid var(--border-light);
}

.bm-header__inner {
	display: flex;
	align-self: center !important;
	align-items: center;
	justify-content: space-between;
	z-index: 9999;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: var(--space-30);
  background-color: var(--color-bg);
}
@media (max-width: 991px) {
	.bm-header__inner {
		padding: var(--space-20);
    
	}
}

.bm-header__left {
	align-self: center !important;
	justify-content: center;
	align-items: center;
 }

.bm-header__logo {
	display: flex;
	align-items: center;
	line-height: 1;
}

.bm-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--logo-color); /* светлая/тёмная тема сама покрасит логотип */

}
a.bm-logo {
   color: var(--logo-color);
}

.bm-logo__svg {
	display: block;
	height: auto;
	width: 120px;
}

@media (max-width: 767px) {
   
	.bm-header__inner {
		flex-wrap: nowrap;
	}
	
	.bm-logo__svg {
		width: 90px;
	}
}


.bm-header__right {
	flex-direction: row;
	align-self: center !important;
	align-items: center;
	column-gap: var(--space-50);
	width: auto;
	
}
  
.bm-header__icons {
	flex-direction: row;
	align-self: center;
	justify-content: center;
	align-items: center;
	column-gap: var(--space-10);
	flex-wrap: nowrap;
}

@media (max-width: 767px) {
	.bm-header__icons {
		flex-wrap: nowrap;
	}
}



/* Search */	


.bm-search { 
	position: relative; 
	width:auto;
	display:flex;
}
.bm-search__open {
	display:flex; 
	align-items:center;
	background:none; 
	border:0; 
	cursor:pointer; 
	color:inherit; 
	width: auto;
}

.bm-search__overlay {
	position:fixed; 
	inset:0; 
	z-index:9999;
	visibility:hidden; 
	pointer-events:none;
	opacity:0; 
	transition:opacity .25s ease;
}
.bm-search__overlay.is-active { 
	visibility:visible; 
	pointer-events:auto; 
}
.bm-search__overlay.is-open { opacity:1; }

.bm-search__backdrop {
  	position:absolute; 
	inset:0; 
	background:rgba(0,0,0,.6);
	opacity:0; 
	transition:opacity .3s ease .05s;
}
.bm-search__overlay.is-open .bm-search__backdrop { 
	opacity:1; 
}

.bm-search__panel {
	position:absolute; 
	left:50%; 
	top:0;
	transform:translateX(-50%) translateY(-6px) scale(.985);
	opacity:0; 
	width:100%;
	background:var(--color-bg); 
	color:var(--color-text);
	border-radius:0; 
	display:flex; 
	flex-direction:column; 
	max-height:88vh;
	transition:opacity .25s ease, transform .25s ease;
}
.bm-search__overlay.is-open .bm-search__panel {
	opacity:1; 
	transform:translateX(-50%) translateY(0) scale(1);
	padding:0 0 20px;
}

.bm-search__bar {
	display:flex; 
	align-items:center; 
	gap:.75rem;
	padding:14px 30px; 
	border-bottom: 1px solid var(--border-light); 
	/* border-top: 1px solid var(--border-light);  */
	max-width: 100%;
	margin: 0px auto;
	width: 100%;
}
.bm-search__icon { opacity:.6; }
.bm-search__input {
  flex:1; 
  font-size:1.3rem; 
  border:0; 
  outline:none;
  background:transparent; 
  color:inherit; 
  padding:0;
}
.bm-search__input::placeholder { color: #8a8a8a; }

.bm-search__close { 
	border:0; 
	background:transparent; 
	cursor:pointer; opacity:.7; 
}
.bm-search__close:hover { opacity:1; }

.bm-search__body { 
	overflow:auto; 
	padding:20px 30px;
	max-width: 100%;
	margin: 0px auto;
	width: 100%;
}
.bm-search__section-title {
  font-size:12px; 
  text-transform:uppercase; 
  color: #8a8a8a;
  margin:0 0 20px;
}
.bm-search__chips {
  display:flex; 
  flex-wrap:wrap; 
  gap:8px; 
  list-style:none;
  margin:0; 
  padding:0;
}
.bm-chip {
  border: 1px solid var(--border-light); 
  font-size:13px; 
  background:transparent; 
  color:inherit;
  padding:8px 12px; 
  border-radius:999px; 
  cursor:pointer;
  transition:transform .12s ease, background .12s ease;
}

.bm-chip:hover{ background:rgba(0,0,0,.04); }

@media (prefers-color-scheme: dark){
  .bm-chip:hover { 
	  background:rgba(255,255,255,.06); 
  }
}

.bm-search__groups { display:grid; gap:18px; }
.bm-group { 
	border-top:1px solid var(--border-light); 
	padding-top:12px; 
}
.bm-group:first-child { border-top:none;}
.bm-group__title { 
	font-weight:500; 
	margin:0 0 8px; 
	color: var(--color-title);
}
.bm-list { 
	list-style:none; 
	margin:0; 
	padding:0; 
	display:grid; 
	gap:10px; 
}
.bm-item{
  display:flex; 
  align-items:center; 
  gap:12px; 
  padding:10px 0;
  border-radius:8px; 
  text-decoration:none; 
  color:inherit;
  border:0;
  transition:background .15s ease, border-color .15s ease, transform .15s ease;
}

.bm-thumb { 
	width:56px; 
	height:56px; 
	border-radius:4px; 
	object-fit:cover; 
	flex:0 0 56px; 
}
.bm-info { flex:1; min-width:0; }
.bm-title { 
	font-weight:500; 
	line-height:1.3; 
	white-space:wrap; 
	overflow:hidden; 
	text-overflow:ellipsis; 
	color: var(--color-title);
}
.bm-meta { 
	font-size:1.2rem; 
	color:var(--color-text-muted); 
	white-space:wrap; 
	overflow:hidden; 
	text-overflow:ellipsis; 
}

.bm-search__viewall {
  display:inline-block; 
  margin-top:8px; 
  font-size:1.2rem; 
  color:inherit;
  opacity:.8; 
  text-decoration:underline; 
  text-underline-offset:3px;
  transition:opacity .15s ease;
}
.bm-search__viewall:hover{ opacity:1; }

@media (max-width:768px){
  
  .bm-search__body { padding:20px 20px;}
  .bm-search__bar {padding:15px 20px;}
  .bm-search__panel { max-height:96vh; padding:0;}
  .bm-thumb { width:48px; height:48px; }
}

.bm-search button svg {
	width: auto;
	height: 18px;
	fill: var(--color-title);
	color: var(--color-title);
}













/* ============================================================
Breadcrumbs
============================================================ */


.breadcrumbs {
  padding: 30px 30px;
  line-height: 1;
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 20px 20px;
  }
}

.rank-math-breadcrumb p {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 13px;
  color: var(--color-text-light);
}
.rank-math-breadcrumb a {
  color: var(--color-title);
}
.rank-math-breadcrumb a:hover {
  color: var(--color-text-light);
}
/* уже есть — прячем сам пост */
.hide-breadcrumb-last .rank-math-breadcrumb .last {
  display: none;
  color: var(--color-text-light);
}

/* 1) прячем ВСЕ стандартные сепараторы Rank Math на постах */
.hide-breadcrumb-last .rank-math-breadcrumb .separator {
  display: none;
}

/* 2) рисуем свой разделитель перед второй ссылкой (категория) */
.hide-breadcrumb-last .rank-math-breadcrumb a + .separator + a::before {
  content: " | ";
  margin: 0;
  color: var(--color-text-light);
}






/* ============================================================
Containers
============================================================ */


.container {
  padding: 30px;
  max-width: 1280px;
}

@media (max-width: 767px) {
  .container {
    padding: 20px;
  }
}

hr {
  margin: 30px 0!important;
}
.wp-block-separator {
border: none;
border-top: 1px solid var(--border-light)!important;
}





/* ============================================================
Cards
============================================================ */

.card {
  display: flex;
  flex-direction: row;
align-items: center;
  flex-wrap: nowrap;
}
.card.xl {
  gap: 2rem;
}
.card.l {
  gap: 2rem;
}
.card.s {
  gap: 1.5rem;
}

.card-media {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: var(--border-img);
  border-radius: 8px;
background: var(--color-bg-img);
}
.card-media img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.card.xl .card-media {
  width: 192px;
  height: 192px;
}
.card.l .card-media {
  width: 128px;
  height: 128px;
}
.card.s .card-media {
  width: 64px;
  height: 64px;
  border-radius: 6px;
}
.card-text {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
}
.card-text a, a .card-text {
  color: var(--color-link-mono);
}
.card-text .card-title {
  display: flex;
  align-items: flex-start;
  column-gap: 3px;
  flex-direction: row;
}
.card.s .card-text {
  font-size: 12px;
  line-height: 1.4;
}
.card.s .card-text .card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.card.s .card-text .card-title h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.card.s .verified-badge {
  font-size: 12px;
  height: 12px!important;
  width: 12px!important;
}

@media (max-width: 767px) {
  .card {
    display: flex;
    flex-direction: row;
  align-items: center;
    flex-wrap: nowrap;
  }
  .card-media {

  }
}

.card-company .card-media {

}

.card-expert .card-media {

}




/* ============================================================
Profile Hero
============================================================ */



.profile-logo-block {
  display: flex;
  display: flex;
  flex-direction: row;
  gap: var(--space-30);
  flex-wrap: nowrap;
}
.profile-logo-block a {
  width: auto;
}

.profile-logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: var(--border-img);
  border-radius: 8px;
background: var(--color-bg-img);
width: 192px;
height: 192px;
}

@media (max-width: 767px) {
  .profile-logo-block {
    gap: var(--space-20);
  }
  .profile-logo {
    width: 128px;
    height: 128px;
  }
}
.profile-logo img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.profile-logo-text-block {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
}



.profile-title {
  display: flex;
  lign-items: flex-start; 

  column-gap: 3px;
  flex-direction: row;
  margin-bottom: 10px;
}
.profile-title h1 {
  margin-bottom: 0px;
  font-size: var(--font-size-38);
  line-height: 1;
}

@media (max-width: 767px) {
  .profile-title h1 {
    font-size: var(--font-size-20);
  }
}

.verified-badge {
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 10;
  margin-top: 2px;
}
.verified-icon {
color: var(--color-verified)!important;
fill: var(--color-verified)!important;
height: 16px!important;
width: 16px!important;
}
.verified-badge .tooltip {
position: absolute;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
width: max-content;
max-width: 280px;
white-space: nowrap;
background: #111;
color: #fff;
font-size: 12px;
line-height: 1.3;
padding: 4px 8px;
border-radius: 4px;
opacity: 0;
pointer-events: none;
transition: opacity .2s ease, transform .2s ease;
z-index: 9999;
}
.verified-badge .tooltip::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border:5px solid transparent;
  border-top-color:#111;
}
.verified-badge:hover .tooltip,
.verified-badge:focus-within .tooltip{
  opacity:1;
  transform: translateX(-50%) translateY(-4px);
}

.tax-list {
  display: inline;
}	
.tax-list a {
  color: var(--color-link-mono);
}	
.tax-list a:hover {
  color: var(--color-link-mono-hover);
}	

.profile-logo-text-block a {
  font-size: var(--font-size-15);
  color: var(--color-text);
}	

@media (max-width: 767px) {
.profile-logo-text-block a {
  font-size: var(--font-size-14);
  color: var(--color-text);
  }
  .profile-logo-text-block .tax-list {
    font-size: 13px;
  }
  .profile-logo-text-block .geo-list {
    font-size: 13px;
  }
}	



/* ============================================================
Profile Tabs
============================================================ */

section[data-section-id] {
  scroll-margin-top: 150px;
}

.profile-tabs-section {
  position: sticky;
  top: 85px;
  background: var(--color-bg);
  z-index: 99;
  border-bottom: 1px solid var(--border);
  
}

.profile-tabs-section .container {
  padding: 0px;
}



.profile-tabs {
padding: 0px 30px;
flex-direction: row;
column-gap: var(--space-25);
  flex-wrap: nowrap;
  scrollbar-width: none;
  overflow-x: auto;
  line-height: 3.5;
margin-bottom: -1px; 
}

.profile-tab {
/* color: var(--color-link-mono);
  border-bottom: 3px solid transparent; */
  
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease;
  
}

.profile-tab.active {
/* border-bottom: 3px solid var(--color-link-mono);
  color: var(--color-link-mono); */
}
.profile-tab.active::after {
  /* width: 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%; */

}


#profile,
#profile-content,
#news,
#interview,
#projects,
#cases,
#events {
  /* scroll-margin-top: 140px; /* подставь высоту header+зазор */ */
}



@media (max-width: 767px) {
  .profile-tabs-section {
    top: 65px;
  }
.profile-tabs-section .container {
  padding: 0 0px;
}
  .profile-tabs {
  padding: 0 20px;
  column-gap: var(--space-20);
  line-height: 3.2;
  }
  #profile,
  #profile-content,
  #news,
  #interview,
  #projects,
  #cases,
  #events {
    /* scroll-margin-top: 120px; /* подставь высоту header+зазор */ */
  }
}






/* ============================================================
Profile Section
============================================================ */



.profile-section {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 40px 30px;
  font-size: 14px;
}

.profile-section .infobox-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-section .infobox-row .infobox {
  display: grid;
  grid-template-columns: 1fr;
}

.profile-section h3 {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 12px;
  margin-bottom: 10px;
}

.profile-section .tax-list a {
  line-height: 1.4;
  font-size: 14px;
}

@media (max-width: 767px) {
  .profile-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }
  .profile-section .infobox-row .infobox {
    display: grid;
    grid-template-columns: 1fr;
  }
  .profile-section h3 {
    font-size: 13px;
  }
}






/* ============================================================
Post
============================================================ */

.post-meta {
  display: inline-flex;
  align-items: flex-start;
  font-size: 12px;
  color: var(--color-text-light);
  margin: 20px 0;
}
figcaption {
  font-size: 12px;
  color: var(--color-text-light);
}


/* ============================================================
Footer
============================================================ */
footer {
  margin-top: 50px;
}
.footer {
  width: 100%;
  max-width: 100%;
  padding: 30px;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px;
  }
}
