@charset "utf-8";

/*
  Theme Name: BOD Holdings
  Author: BOD
  Description: BOD Holdings コーポレートサイト用テーマ
  Version: 1.0.0
*/

/* =========================================================
   bodhd theme - utility-first stylesheet (Bootstrap-like)
   ========================================================= */

/* ---- Variables -------------------------------------------------- */
:root {
  --color-yellow: #eae83a;
  --color-dark: #47463b;
  --color-gray: #777;
  --color-line: #e2e2e2;
  --color-box-gray: #898989;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f7f5;
  --container: 1080px;
  --gutter: 12px;
  --header-height: 5.5rem;
}

/* ---- Reset ------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease, color .2s ease, background-color .2s ease;
}

a:hover {
  opacity: .8;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ---- Layout: container ------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

/* ---- Layout: grid ----------------------------------------------- */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
}

[class^="col"],
[class*=" col"] {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.col {
  flex: 1 0 0%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* ---- Display ---------------------------------------------------- */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

/* ---- Flex helpers ----------------------------------------------- */
.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-md-column {
  flex-direction: column !important;
}

.flex-1 {
  flex: 1 1 auto !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-space-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.gap-1 {
  gap: .25rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

/* ---- Spacing ---------------------------------------------------- */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .25rem !important;
}

.mt-2 {
  margin-top: .5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .25rem !important;
}

.mb-2 {
  margin-bottom: .5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

/* ---- Typography ------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-pretty {
  /* text-wrap: pretty; */
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-sm {
  font-size: .8rem !important;
}

.fs-1 {
  font-size: 2.25rem !important;
}

.fs-2 {
  font-size: 1.75rem !important;
}

.fs-3 {
  font-size: 1.4rem !important;
}

.fs-4 {
  font-size: 1.2rem !important;
}

.fs-5 {
  font-size: 1rem !important;
}

.lh-base {
  line-height: 1.8 !important;
}

.text-muted {
  color: var(--color-gray) !important;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

/* ---- Colors / backgrounds --------------------------------------- */
.bg-white {
  background-color: #fff !important;
}

.bg-light {
  background-color: var(--color-bg-soft) !important;
}

.bg-yellow {
  background-color: var(--color-yellow) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

/* ---- Borders ---------------------------------------------------- */
.border {
  border: 1px solid var(--color-line) !important;
}

.border-top {
  border-top: 1px solid var(--color-line) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-line) !important;
}

.rounded {
  border-radius: 4px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* ---- Width helpers ---------------------------------------------- */
.w-100 {
  width: 100% !important;
}

.site-logo {
  height: 88px;
}

/* ---- Buttons ---------------------------------------------------- */
.btn {
  display: inline-block;
  padding: .65em 1.8em;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s, background-color .2s, color .2s;
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

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

.btn-outline {
  background-color: #fff;
  color: #333;
  border-color: #cfcfcf;
}

.btn-outline:hover {
  background-color: #f3f3f3;
  opacity: 1;
}

.btn-block {
  display: block;
  width: 100%;
}

/* =========================================================
   Components
   ========================================================= */

/* ---- Section spacing -------------------------------------------- */
.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 28px;
}

.section-title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background-color: #333;
}

/* heading with a square marker (■) */
.block-title {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.block-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-color: var(--color-dark);
}


/* ---- Header ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
}

.site-header-logo img {
  height: 5.5rem;
}

.global-nav {
  display: flex;
  align-items: center;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav__list a {
  font-size: .9rem;
  letter-spacing: .03em;
}

.global-nav__cta--mobile {
  display: none;
}

.site-header-btn {
  margin-left: 28px;
  padding: .6em 2em;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border-radius: 2px;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--color-dark);
}

/* ---- Mega menu -------------------------------------------------- */
.global-nav__item--mega {
  position: static;
}

.global-nav__mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: .9rem;
  letter-spacing: .03em;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.global-nav__mega-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s;
}

.global-nav__mega-toggle[aria-expanded="true"] .global-nav__mega-arrow {
  transform: translateY(1px) rotate(-135deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  background-color: var(--color-dark);
  color: #fff;
  opacity: .8;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu.is-open {
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.mega-menu-title {
  display: block;
  width: 100%;
  padding: 0 0 12px;
  margin: 0;
  font-size: 1.05rem;
  text-align: right;
  letter-spacing: .04em;
  white-space: nowrap;
  border-bottom: 1px solid #fff;
}

.mega-menu-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-list a {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.mega-menu-list a:hover {
  color: var(--color-yellow);
}

/* ---- Hero ------------------------------------------------------- */
.hero {
  background: #fff;
}

.hero__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---- Notice ----------------------------------------------------- */
.notice {
  padding: 56px 0;
}

/* ---- Service grid ----------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-line);
  background-color: #fff;
}

.service-card__thumb {
  display: block;
  overflow: hidden;
}

.service-card__img {
  display: block;
  width: 100%;
  max-height: 97px;
  object-fit: cover;
  /*  aspect-ratio: 16 / 9;*/
  background-color: #d9d9d9;
  background-size: cover;
  background-position: center;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 18px 22px;
}

.service-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card__title-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.service-card__desc {
  display: block;
  margin-top: 10px;
  font-size: .85rem;
}

.service-card__footer {
  display: block;
  margin-top: auto;
  padding-top: 1em;
  min-height: calc(1em + 1.6em * 2);
  font-size: .85rem;
  line-height: 1.6;
}

.service-card__footer a:hover {
  opacity: 1;
  color: var(--color-gray);
}

.service-card__sep {
  margin: 0 .1em;
}

/* ---- News ------------------------------------------------------- */

.news-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--color-line);
}

.news-list__date {
  flex-shrink: 0;
  width: 100px;
}

.news-list__cat {
  flex-shrink: 0;
  width: 110px;
  padding: 2px 0;
  font-size: .75rem;
  text-align: center;
  border: 1px solid var(--color-box-gray);
}

.news-list__title {
  flex: 1 1 auto;
  font-size: .9rem;
}

.more {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  letter-spacing: .05em;
}

.more a::after {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #333;
}

/* ---- Info tables  ----------------------- */
.info-table th,
.info-table td {
  padding: 16px 20px;
  font-size: .9rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-line);
}

.info-table th {
  width: 210px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: var(--color-dark);
}

/* yellow-headed variant (拠点) */
.info-table--yellow th {
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border-bottom: 1px solid #fff;
}

/* grid variant (営業所一覧) — gray lattice borders */
.info-table--grid {
  border: 1px solid var(--color-line);
}

.info-table--grid th,
.info-table--grid td {
  border: 1px solid var(--color-line);
}

/* ---- Group / related companies table ---------------------------- */
.group-table {
  border: 1px solid var(--color-line);
}

.group-table td {
  padding: 16px 20px;
  font-size: .9rem;
  vertical-align: middle;
  border: 1px solid var(--color-line);
}

.group-table__logo {
  width: 200px;
  text-align: center;
}

.group-table__logo-img {
  display: inline-block;
  width: auto;
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

.group-table__name {
  width: 240px;
  font-weight: 700;
}

/* ---- Access map ------------------------------------------------- */
.access-map {
  line-height: 0;
}

.access-map iframe {
  width: 100%;
  border: 0;
}

/* ---- Page top + float CTA --------------------------------------- */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1rem;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 50%;
}

.float-cta {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 30;
  writing-mode: vertical-rl;
  padding: 18px 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-dark);
  background-color: var(--color-yellow);
  border-radius: 4px 0 0 4px;
}

/* ---- Breadcrumb ------------------------------------------------- */
.breadcrumb {
  padding: 1rem 0 1.5rem;
}

/* ---- Page Title ------------------------- */
.page-title-wrapper {
  padding: 44px 0 36px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.page-title-wrapper h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400 !important;
}

.wp-pagenavi {

  .page,
  .extend,
  .nextpostslink,
  .previouspostslink,
  .first,
  .last,
  .current {
    border: none !important;
  }
}

/* ---- Footer ----------------------------------------------------- */
.site-footer {
  margin-top: auto;
  background-color: var(--color-dark);
  color: #cfcdc6;
}

.site-footer__top {
  padding: 48px 0 32px;
}

.site-footer__row {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 14px 0;
}

.site-footer__cat {
  flex: 0 0 140px;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: .82rem;
}

.site-footer__list a {
  color: #cfcdc6;
}

.site-footer__list a:hover {
  color: #fff;
}

.site-footer__list--services {
  gap: 10px 28px;
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #5c5849;
}

.site-footer__sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: .82rem;
}

.site-footer__sublist a {
  color: #cfcdc6;
}

.site-footer__sublist a:hover {
  color: #fff;
}

.site-footer__copy {
  padding: 18px 0;
  font-size: .75rem;
  text-align: center;
  color: #9d9a90;
}

/* ---- Philosophy (MVV / Values) ---------------------------------- */
.philosophy-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-line);
}

.philosophy-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* パーパス / フィロソフィー / ミッション: 2-column layout */
.philosophy-block--mvv {
  display: grid;
  grid-template-columns: 320px 1fr;
  row-gap: 18px;
}

/* heading with a yellow vertical bar */
.h-left-bar-yellow {
  padding: .5rem 0 .5rem .5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-left: 5px solid #ecdb41;
  white-space: nowrap;
}

.h-left-bar-yellow .mvv-heading__sub {
  font-size: .8rem;
  font-weight: 400;
}

/* pale-yellow statement box */
.h-bg-yellow {
  padding: .5rem;
  font-weight: 700;
  font-size: 1.05rem;
  background-color: #fbf6d5;
}

.philosophy-icon {
  text-align: center;
}

.philosophy-icon img {
  width: 104px;
  height: auto;
}

.mvv-list li {
  position: relative;
  padding-left: 1.1em;
  font-size: .9rem;
}

.mvv-list li::before {
  content: "\30FB";
  position: absolute;
  left: 0;
}

/* バリュー: icon row */
.value-icons {
  display: flex;
  gap: 16px;
  margin: 28px 0 12px;
}

.value-icon {
  flex: 1 1 0;
  text-align: center;
}

.value-icon img {
  width: 104px;
  height: auto;
}

/* バリュー: category columns */
.value-cats {
  display: flex;
  gap: 20px;
}

.value-cat {
  flex: 1 1 0;
}

.value-cat__title {
  display: flex;
  align-items: center;
  padding-left: .5rem;
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 700;
  background-color: #fbf6d5;
}

.value-cat__title::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  background-color: var(--color-dark);
}

.value-cat__list {
  padding-left: 1.6em;
  font-size: .82rem;
  line-height: 1.7;
  color: #555;
  list-style: decimal;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {

  .fs-sm-1 {
    font-size: 1rem !important;
  }

  .service-row .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .site-footer__row {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__cat {
    flex: 0 0 auto;
  }

  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-column {
    flex-direction: row !important;
  }

  .site-header-nav {
    flex: 1 1 auto;
  }

  .site-header-btn {
    display: inline-block;
    margin-left: 0;
    margin-right: 14px;
    padding: .55em 1.4em;
    font-size: .8rem;
  }

  .site-header__toggle {
    display: flex;
    order: 3;
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 28px 48px;
    background-color: rgba(71, 70, 59, .8);
    color: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }

  .global-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-nav__list a {
    display: block;
    padding: 12px 0;
    color: #fff;
    font-size: 1rem;
  }

  .global-nav__list a:hover {
    color: var(--color-yellow);
  }

  .global-nav__mega-toggle {
    display: flex;
    width: 100%;
    padding: 12px 0;
    color: #fff;
    font-size: 1rem;
  }

  .global-nav__mega-arrow {
    display: none;
  }

  .mega-menu {
    position: static;
    display: block;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .mega-menu-inner {
    display: block;
    padding: 0;
  }

  .mega-menu-title {
    display: none;
  }

  .mega-menu-list {
    flex-direction: column;
    gap: 0;
  }

  .mega-menu-list a {
    display: block;
    padding: 8px 0 8px 20px;
    color: #fff;
    font-weight: 400;
  }

  .mega-menu-list a:hover {
    color: var(--color-yellow);
  }

  .global-nav__cta--mobile {
    display: none;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    text-align: left;
  }

  .group-table__logo {
    width: 110px;
  }

  .group-table__name {
    width: auto;
  }

  .group-table td {
    padding: 12px;
  }

  .news-list__item {
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .news-list__title {
    flex: 0 0 100%;
  }

  .float-cta {
    display: none;
  }

  /* Philosophy: stack heading & box, keep icon + list side by side */
  .philosophy-block--mvv {
    grid-template-columns: 96px 1fr;
    column-gap: 16px;
    row-gap: 12px;
  }

  .philosophy-block--mvv>.h-left-bar-yellow,
  .philosophy-block--mvv>.h-bg-yellow {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .philosophy-block--mvv>.philosophy-icon {
    grid-column: 1;
    grid-row: auto;
  }

  .philosophy-block--mvv>.mvv-list {
    grid-column: 2;
    grid-row: auto;
  }

  .philosophy-icon img {
    width: 100%;
  }

  .value-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
  }

  .value-icon {
    flex: 0 0 calc(50% - 12px);
  }

  .value-icon img {
    width: 92px;
  }

  .value-cats {
    flex-wrap: wrap;
    gap: 20px 16px;
  }

  .value-cat {
    flex: 0 0 calc(50% - 8px);
  }
}
