/* ============================================================
   カラーパレット
   ============================================================ */
:root {
  --c-purple : #534AB7;
  --c-green  : #1D9E75;
  --c-orange : #D85A30;
  --c-pink   : #D4537E;
  --c-yellow : #BA7517;
}

/* ============================================================
   5色カラーバー → ロゴドットに変更済み（下記参照）
   ============================================================ */

/* ============================================================
   ヘッダー：中央揃え縦スタック型
   ============================================================ */
.header-nav {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.45rem var(--gap) 0.35rem;
  position: relative;
}

.logo {
  justify-content: center;
}

.logo a {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 2.1rem;
}

.logo-title {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--secondary);
}

/* ─── ロゴドット ─────────────────────────────── */
.logo-dots {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 2px;
}

.logo-dot {
  position: relative;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-dot--3 { width: 14px; height: 14px; }
.logo-dot--5 { width: 8px;  height: 8px;  }

.logo-dot--1 { background: var(--c-purple); }
.logo-dot--2 { background: var(--c-green);  }
.logo-dot--3 { background: var(--c-orange); }
.logo-dot--4 { background: var(--c-pink);   }
.logo-dot--5 { background: var(--c-yellow); }

.logo-dot--1 { top:  0px; }
.logo-dot--2 { top: -2px; }
.logo-dot--3 { top:  1px; }
.logo-dot--4 { top: -3px; }
.logo-dot--5 { top: -1px; }

.logo:hover .logo-dot { transition: transform 0.3s ease; }
.logo:hover .logo-dot--1 { transform: translateY(-5px); transition-delay: 0s;    }
.logo:hover .logo-dot--2 { transform: translateY(-5px); transition-delay: 0.06s; }
.logo:hover .logo-dot--3 { transform: translateY(-5px); transition-delay: 0.12s; }
.logo:hover .logo-dot--4 { transform: translateY(-5px); transition-delay: 0.18s; }
.logo:hover .logo-dot--5 { transform: translateY(-5px); transition-delay: 0.24s; }

.logo-switches {
  position: absolute;
  right: var(--gap);
  top: 1.5rem;
}

#menu {
  justify-content: center;
}

/* ============================================================
   フッター（黒背景）
   ============================================================ */
.site-footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1.5rem var(--gap);
  margin-top: 0;
}

.site-footer a {
  color: #aaa;
}

/* ============================================================
   写真ヒーロー
   ============================================================ */
.home-hero-image {
  position: relative;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center 30%;
  min-height: 420px;
  margin-left: calc(-1 * var(--gap));
  margin-right: calc(-1 * var(--gap));
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.home-hero-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.home-hero-image__text {
  position: absolute;
  z-index: 1;
  top: 22%;
  left: var(--gap);
}

.home-hero-image__title {
  color: #fff;
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* ============================================================
   ヒーローセクション（タグ・サブタイトル）
   ============================================================ */
.home-hero {
  text-align: left;
  padding: 1.5rem var(--gap) 2rem;
}

.home-hero__title {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.htag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 500;
}

.htag--kurashi    { background: rgba(83,  74,  183, 0.1); color: var(--c-purple); }
.htag--naze       { background: rgba(29,  158, 117, 0.1); color: var(--c-green);  }
.htag--kangaeteru { background: rgba(216, 90,  48,  0.1); color: var(--c-orange); }
.htag--kizuki     { background: rgba(212, 83,  126, 0.1); color: var(--c-pink);   }
.htag--sukina     { background: rgba(186, 117, 23,  0.1); color: var(--c-yellow); }

.home-hero__sub {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--secondary);
  margin: 0;
}

/* ============================================================
   黒バンド
   ============================================================ */
.home-band {
  background: #111;
  color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem var(--gap);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0 calc(-1 * var(--gap));
  width: calc(100% + 2 * var(--gap));
}

.home-band__sep {
  color: #555;
}

/* ============================================================
   汎用セクション
   ============================================================ */
.home-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.home-section--alt {
  background: var(--code-bg);
  margin: 0 calc(-1 * var(--gap));
  padding: 2.5rem var(--gap);
  width: calc(100% + 2 * var(--gap));
}

.home-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.home-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--c-purple);
  display: inline-block;
}

/* ============================================================
   最新記事リスト
   ============================================================ */
.home-posts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  counter-reset: post-counter;
}

.home-posts__item {
  counter-increment: post-counter;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.home-posts__item::before {
  content: counter(post-counter, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-purple);
  flex-shrink: 0;
  min-width: 1.8rem;
}

.home-posts__link {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
  line-height: 1.4;
}

.home-posts__link:hover {
  color: var(--c-purple);
}

.home-posts__date {
  font-size: 0.75rem;
  color: var(--secondary);
  flex-shrink: 0;
  white-space: nowrap;
}

.home-posts__empty {
  color: var(--secondary);
  font-size: 0.9rem;
}

.home-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-purple);
  text-decoration: none;
}

.home-more:hover {
  text-decoration: underline;
}

/* ============================================================
   カテゴリグリッド
   ============================================================ */
.home-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-cat {
  flex: 1 1 calc(33.333% - 0.7rem);
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
}

.home-cat:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: #fff;
}

.home-cat--kurashi    { background: var(--c-purple); }
.home-cat--naze       { background: var(--c-green);  }
.home-cat--kangaeteru { background: var(--c-orange); }
.home-cat--kizuki     { background: var(--c-pink);   }
.home-cat--sukina     { background: var(--c-yellow); }

.home-cat__icon {
  font-size: 1.8rem;
}

.home-cat__name {
  font-size: 0.9rem;
}

/* ============================================================
   Aboutセクション
   ============================================================ */
.home-about__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ============================================================
   記事タグ（カラフルなピル型）
   ============================================================ */
.post-tags a {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.82em;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  border: none !important;
  transition: opacity 0.2s;
}

.post-tags a:hover { opacity: 0.8; }

.post-tags a.tag-kurashi    { background: var(--c-green);  }
.post-tags a.tag-naze       { background: var(--c-purple); }
.post-tags a.tag-kangaeteru { background: var(--c-orange); }
.post-tags a.tag-kizuki     { background: var(--c-pink);   }
.post-tags a.tag-sukina     { background: var(--c-yellow); }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 480px) {
  .home-cats {
    grid-template-columns: 1fr;
  }

  .home-band {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .home-band__sep {
    display: none;
  }

  .home-posts__item {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ============================================================
   新TOP: カラーパレット（上書き・ウォーム系）
   ============================================================ */
:root {
  --iro-cream    : #FFFDF5;
  --iro-terra    : #C4613A;
  --iro-mustard  : #D4941A;
  --iro-green    : #4A8C5C;
  --iro-text     : #3A3028;
  --iro-muted    : #8A7F72;
  --iro-border   : #EDE8DF;
  --iro-max      : 720px;
}

/* ─── Hero ──────────────────────────────────── */
.iro-hero {
  position: relative;
  overflow: hidden;
}

.iro-hero__img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
}

.iro-hero__copy {
  position: absolute;
  top: 13%;
  left: 5%;
  right: 48%;
  padding: 0;
  background: none;
  text-align: left;
}

.iro-hero__main {
  font-size: clamp(1.0rem, 3.0vw, 1.35rem);
  font-weight: 700;
  color: #8a4a2e;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  text-shadow: none;
}

.iro-hero__sub {
  font-size: clamp(0.6rem, 1.6vw, 0.7rem);
  color: rgba(138,74,46,0.72);
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0;
}

.iro-hero__arch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ─── Category Nav ──────────────────────────── */
.iro-cat-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem 1.6rem;
  background: var(--iro-cream);
  flex-wrap: wrap;
}

.iro-cat-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.iro-cat-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-decoration: none;
}

.iro-cat-tab--tabi  { background: #FFF0EB; color: var(--iro-terra);   border-color: #F5C4B4; }
.iro-cat-tab--shoku { background: #FFF8E6; color: var(--iro-mustard); border-color: #F0D898; }
.iro-cat-tab--ami     { background: #EBF4EF; color: var(--iro-green);   border-color: #B4D9C2; }
.iro-cat-tab--kurashi { background: #F0EEFF; color: #5B4FCF;             border-color: #C9C1F5; }

.iro-cat-tab__icon { display: flex; align-items: center; }
.iro-cat-tab__label { letter-spacing: 0.05em; }

/* ─── Sections ──────────────────────────────── */
.iro-section {
  padding: 2.5rem 1.5rem;
  background: var(--iro-cream);
}

.iro-section--alt {
  background: #F5F0E8;
}

.iro-section__inner {
  max-width: var(--iro-max);
  margin: 0 auto;
}

.iro-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--iro-text);
  margin: 0 0 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--iro-border);
}

/* ─── Article Cards ─────────────────────────── */
.iro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start;
}

.iro-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--iro-border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.iro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.iro-card__link {
  display: block;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
}

.iro-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.iro-card__cat--{ color: var(--iro-muted); background: var(--iro-border); }
.iro-card__cat--旅    { color: var(--iro-terra);   background: #FFF0EB; }
.iro-card__cat--食    { color: var(--iro-mustard); background: #FFF8E6; }
.iro-card__cat--編み物 { color: var(--iro-green);   background: #EBF4EF; }
.iro-card__cat--暮らし { color: #5B4FCF;             background: #F0EEFF; }

.iro-card__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--iro-text);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.iro-card__date {
  font-size: 0.73rem;
  color: var(--iro-muted);
}

.iro-card__image {
  display: block;
  width: calc(100% + 2.4rem);
  height: 160px;
  object-fit: cover;
  margin: -1.1rem -1.2rem 1rem;
  max-height: none;
}

.iro-more-wrap {
  text-align: right;
  margin-top: 1.2rem;
}

.iro-more {
  font-size: 0.85rem;
  color: var(--iro-terra);
  text-decoration: none;
  font-weight: 600;
}

.iro-more:hover { text-decoration: underline; }

/* ─── Category Pickups ──────────────────────── */
.iro-pickups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.iro-pickup {
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  border: 1px solid var(--iro-border);
}

.iro-pickup__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.iro-pickup__cat {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.iro-pickup--tabi  .iro-pickup__cat { color: var(--iro-terra); }
.iro-pickup--tabi  .iro-pickup__icon { color: var(--iro-terra); }
.iro-pickup--shoku .iro-pickup__cat { color: var(--iro-mustard); }
.iro-pickup--shoku .iro-pickup__icon { color: var(--iro-mustard); }
.iro-pickup--ami   .iro-pickup__cat { color: var(--iro-green); }
.iro-pickup--ami   .iro-pickup__icon { color: var(--iro-green); }

.iro-pickup__icon { display: flex; align-items: center; }

.iro-pickup__article {
  display: block;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.iro-pickup__title {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--iro-text);
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.iro-pickup__article:hover .iro-pickup__title { color: var(--iro-terra); }

.iro-pickup__date {
  font-size: 0.7rem;
  color: var(--iro-muted);
}

.iro-pickup__empty {
  font-size: 0.8rem;
  color: var(--iro-muted);
  margin: 0 0 0.8rem;
}

.iro-pickup__more {
  font-size: 0.75rem;
  color: var(--iro-muted);
  text-decoration: none;
}

.iro-pickup__more:hover { color: var(--iro-terra); text-decoration: underline; }

/* ─── About Link ────────────────────────────── */
.iro-about-link {
  text-align: center;
  padding: 1.5rem 0;
}

.iro-about-link__text {
  font-size: 0.9rem;
  color: var(--iro-muted);
  margin: 0 0 1rem;
}

.iro-about-link__btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border: 2px solid var(--iro-terra);
  color: var(--iro-terra);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.iro-about-link__btn:hover {
  background: var(--iro-terra);
  color: #fff;
  text-decoration: none;
}

.iro-empty { color: var(--iro-muted); font-size: 0.9rem; }

/* ─── Featured Post ─────────────────────────── */
.iro-featured__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--iro-terra);
  color: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.55rem;
}

.iro-featured__card {
  display: block;
  background: #fff;
  border: 2px solid var(--iro-terra);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  overflow: hidden;
}

.iro-featured__image {
  display: block;
  width: calc(100% + 2.8rem);
  height: 180px;
  object-fit: cover;
  margin: -1.2rem -1.4rem 1rem;
}

.iro-featured__card:hover {
  box-shadow: 0 6px 20px rgba(196, 97, 58, 0.18);
  text-decoration: none;
  color: inherit;
}

.iro-featured__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--iro-text);
  line-height: 1.6;
  margin: 0.4rem 0 0.5rem;
}

/* ─── Profile Card ──────────────────────────── */
.iro-profile-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--iro-border);
  padding: 1.6rem 1.8rem;
  text-align: center;
}

.iro-profile-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--iro-text);
  margin: 0 0 0.5rem;
}

.iro-profile-card__bio {
  font-size: 0.85rem;
  color: var(--iro-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.iro-profile-card__link {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid var(--iro-terra);
  color: var(--iro-terra);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.iro-profile-card__link:hover {
  background: var(--iro-terra);
  color: #fff;
  text-decoration: none;
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 640px) {
  .iro-hero__img { max-height: 280px; }
  .iro-hero__copy { top: 10%; left: 4%; right: 42%; }
  .iro-cards { grid-template-columns: 1fr; }
  .iro-pickups { grid-template-columns: 1fr; }
  .iro-cat-nav { gap: 0.5rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .iro-cat-tab { padding: 0.5rem 1rem; font-size: 0.85rem; flex-shrink: 0; }
}

/* ─── About ページ ──────────────────────────── */
.iro-about__inner {
  max-width: 560px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
}

.iro-about__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.iro-about__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: url('/images/irori-icon.png');
  background-size: cover;
  background-position: center top;
  border: 3px solid var(--iro-border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin: 0 auto;
}

.iro-about__body {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--iro-text);
}

.iro-about__body p {
  margin: 0 0 1.1rem;
}

.iro-about__body em {
  color: var(--iro-terra);
  font-style: italic;
}

/* ─── TOP プロフィールカード アイコン ─── */
.iro-profile-card .iro-profile-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: url('/images/irori-icon.png');
  background-size: cover;
  background-position: center top;
  margin: 0 auto 1rem;
  border: 2px solid var(--iro-border);
}

/* ─── 記事本文 画像サイズ・スペース ─── */
.post-content img {
  max-height: 500px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
}

/* ─── アイキャッチ画像サイズ制限 ─── */
.entry-cover img {
  max-height: 400px;
  object-fit: cover;
}

/* ─── 記事タイトル h1 フォントサイズ調整 ─── */
.post-title {
  font-size: 30px;
}

/* ─── カバー画像テキストオーバーレイ ─── */
.entry-cover { position: relative; }

.cover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem 1.4rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
}

.cover-overlay__title {
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.cover-overlay__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ─── 料理写真 横並びペア ─── */
.photo-pair {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 auto 24px;
  max-width: 100%;
}

.post-content .photo-pair img {
  width: 100% !important;
  height: 220px;
  object-fit: cover;
  margin: 0;
}

/* モバイルでも横並びを維持、画像高さを抑える */
@media (max-width: 480px) {
  .post-content .photo-pair img {
    height: 150px;
  }
}

/* ─── ライトボックス ─── */
.photo-pair img { cursor: pointer; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  animation: lb-fade 0.15s ease;
}

@keyframes lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  width: auto !important;
  height: auto !important;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
