/* =========================================================
   fishing.co.jp shared site.css
   Mobile-first, readable, high-contrast, A+++ base
   ========================================================= */

:root{
  color-scheme: light;

  --bg: #f6fbfd;
  --bg-soft: #edf6fa;
  --surface: #ffffff;
  --surface-2: #f8fcfe;
  --surface-3: #e8f2f7;

  --text: #10212b;
  --text-soft: #415a68;
  --text-muted: #5a7280;
  --text-inverse: #ffffff;

  --line: rgba(16, 33, 43, 0.10);
  --line-strong: rgba(16, 33, 43, 0.18);

  --brand-900: #0a2a3d;
  --brand-800: #0e425b;
  --brand-700: #145e7a;
  --brand-600: #1a7a99;
  --brand-500: #2398bb;
  --brand-400: #59b8d5;
  --brand-300: #94d7ea;
  --brand-200: #d3eef7;
  --brand-100: #eef9fd;

  --accent: #0f7da1;
  --accent-strong: #0c6787;
  --accent-soft: #dff3fa;

  --success: #146c43;
  --warning: #9a6400;
  --danger: #a02828;

  --shadow-sm: 0 6px 18px rgba(10, 42, 61, 0.06);
  --shadow-md: 0 14px 36px rgba(10, 42, 61, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 42, 61, 0.16);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --content: 1200px;
  --content-narrow: 820px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --header-h: 72px;
  --font-sans: "Inter", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", Arial, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
}

/* =========================================================
   Reset / base
   ========================================================= */

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

html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body{
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(148, 215, 234, 0.20), transparent 35%),
    linear-gradient(180deg, #f9fdff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video,
canvas{
  display: block;
  max-width: 100%;
}

img{
  height: auto;
  border: 0;
}

a{
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible{
  outline: 3px solid rgba(35, 152, 187, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}

button,
input,
select,
textarea{
  font: inherit;
}

p,
ul,
ol,
dl,
blockquote{
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6{
  margin: 0 0 0.75rem;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1{ font-size: clamp(2rem, 5vw, 4rem); }
h2{ font-size: clamp(1.55rem, 3vw, 2.5rem); }
h3{ font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4{ font-size: 1.05rem; }

small,
.text-small{
  font-size: 0.92rem;
  color: var(--text-soft);
}

hr{
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--space-8) 0;
}

::selection{
  background: rgba(89, 184, 213, 0.22);
}

/* =========================================================
   Layout
   ========================================================= */

.container{
  width: min(100% - 1.5rem, var(--content));
  margin-inline: auto;
}

.container-narrow{
  width: min(100% - 1.5rem, var(--content-narrow));
  margin-inline: auto;
}

.section{
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.section-tight{
  padding: clamp(1.5rem, 4vw, 2.75rem) 0;
}

.stack > * + *{
  margin-top: var(--space-4);
}

.grid{
  display: grid;
  gap: 1rem;
}

.grid-2{
  grid-template-columns: 1fr;
}

.grid-3{
  grid-template-columns: 1fr;
}

.grid-4{
  grid-template-columns: 1fr;
}

@media (min-width: 700px){
  .grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1040px){
  .grid-4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* =========================================================
   Header / navigation
   ========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(246, 251, 253, 0.88);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled{
  background: rgba(255,255,255,0.95);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header-inner{
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand{
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brand-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-brand:hover{
  text-decoration: none;
}

.site-brand img{
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.site-brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand-text strong{
  color: var(--brand-900);
  font-size: 1rem;
}

.site-brand-text span{
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-900);
  cursor: pointer;
}

.nav-toggle:hover{
  background: var(--surface-2);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after{
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  content: "";
  display: block;
}

.nav-toggle-icon{
  position: relative;
}

.nav-toggle-icon::before{
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-icon::after{
  position: absolute;
  top: 6px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon{
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before{
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after{
  top: 0;
  transform: rotate(-45deg);
}

.site-nav{
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0.75rem;
  left: 0.75rem;
  display: none;
  padding: 0.75rem;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.site-nav.is-open{
  display: block;
}

.site-nav ul{
  display: grid;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a{
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"]{
  background: var(--brand-100);
  color: var(--brand-900);
  text-decoration: none;
}

@media (min-width: 980px){
  .nav-toggle{
    display: none;
  }

  .site-nav{
    position: static;
    display: block !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav ul{
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav a{
    padding: 0.8rem 0.95rem;
  }
}

/* =========================================================
   Hero sections
   ========================================================= */

.hero{
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2.5rem, 7vw, 5rem);
  color: var(--text);
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30), rgba(246,251,253,0.78)),
    linear-gradient(135deg, rgba(14,66,91,0.10), rgba(35,152,187,0.05));
  pointer-events: none;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 23, 34, 0.12) 0%, rgba(246, 251, 253, 0.82) 72%),
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.72) 100%);
}

.hero-content{
  position: relative;
  max-width: 760px;
}

.hero h1,
.hero h2,
.hero p,
.hero li,
.hero .eyebrow{
  color: var(--text);
  text-shadow: none;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,33,43,0.08);
  color: var(--brand-900);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-lead{
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-panel{
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,33,43,0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px){
  .hero{
    padding-top: 2.4rem;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(255,255,255,0.70) 0%, rgba(246,251,253,0.90) 100%);
  }

  .hero-panel{
    padding: 0.9rem;
  }
}

/* =========================================================
   Buttons / pills / badges
   ========================================================= */

.button,
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand-700);
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover,
.btn:hover{
  text-decoration: none;
  background: var(--brand-800);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.button.secondary,
.btn.secondary{
  background: #ffffff;
  color: var(--brand-900);
  border-color: var(--line-strong);
}

.button.secondary:hover,
.btn.secondary:hover{
  background: var(--surface-2);
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-900);
  font-size: 0.84rem;
  font-weight: 800;
}

/* =========================================================
   Cards
   VERY IMPORTANT: explicit dark text for readability
   ========================================================= */

.card,
.info-card,
.feature-card,
.species-card,
.region-card,
.story-card,
.guide-card,
.tool-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16,33,43,0.10);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.card > *,
.info-card > *,
.feature-card > *,
.species-card > *,
.region-card > *,
.story-card > *,
.guide-card > *,
.tool-card > *{
  color: inherit;
}

.card-media{
  position: relative;
  aspect-ratio: 16 / 10;
  background: #dfeef4;
}

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body{
  padding: 1rem;
}

.card h2,
.card h3,
.card h4,
.card .card-title,
.card-title,
.info-card h2,
.info-card h3,
.feature-card h2,
.feature-card h3,
.species-card h2,
.species-card h3,
.region-card h2,
.region-card h3,
.story-card h2,
.story-card h3,
.guide-card h2,
.guide-card h3,
.tool-card h2,
.tool-card h3{
  color: #10212b !important;
}

.card p,
.card li,
.card .meta,
.card .kicker,
.card .card-copy,
.info-card p,
.feature-card p,
.species-card p,
.region-card p,
.story-card p,
.guide-card p,
.tool-card p{
  color: #415a68 !important;
}

.card a:not(.button):not(.btn),
.info-card a:not(.button):not(.btn),
.feature-card a:not(.button):not(.btn),
.species-card a:not(.button):not(.btn),
.region-card a:not(.button):not(.btn),
.story-card a:not(.button):not(.btn),
.guide-card a:not(.button):not(.btn),
.tool-card a:not(.button):not(.btn){
  color: var(--accent-strong);
}

.card:hover,
.info-card:hover,
.feature-card:hover,
.species-card:hover,
.region-card:hover,
.story-card:hover,
.guide-card:hover,
.tool-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kicker,
.meta{
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-footer{
  margin-top: auto;
  padding: 0 1rem 1rem;
}

/* =========================================================
   Article / prose
   ========================================================= */

.prose{
  color: var(--text);
}

.prose > * + *{
  margin-top: 1rem;
}

.prose p,
.prose li,
.prose blockquote,
.prose dd{
  max-width: 72ch;
  color: var(--text);
}

.prose h2,
.prose h3,
.prose h4{
  margin-top: 1.8rem;
}

.prose ul,
.prose ol{
  padding-left: 1.2rem;
}

.prose li + li{
  margin-top: 0.35rem;
}

.prose blockquote{
  padding: 1rem 1.1rem;
  margin-left: 0;
  border-left: 4px solid var(--brand-400);
  background: var(--brand-100);
  border-radius: 0 16px 16px 0;
  color: var(--text);
}

.prose strong{
  color: var(--brand-900);
}

.prose table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
}

.prose th,
.prose td{
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--text);
  white-space: nowrap;
}

.prose th{
  background: var(--surface-2);
  color: var(--brand-900);
  font-weight: 800;
}

/* =========================================================
   Content blocks
   ========================================================= */

.panel{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}

.panel-soft{
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.callout{
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 4px solid var(--brand-500);
  background: #ffffff;
  border-radius: 0 18px 18px 0;
  box-shadow: var(--shadow-sm);
}

.callout.warning{
  border-left-color: #c58813;
  background: #fff9ec;
}

.callout.success{
  border-left-color: #22855a;
  background: #f0fbf5;
}

.callout.danger{
  border-left-color: #c43a3a;
  background: #fff2f2;
}

.fact-list{
  display: grid;
  gap: 0.8rem;
}

.fact{
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.fact .label{
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.fact .value{
  color: var(--brand-900);
  font-size: 1rem;
  font-weight: 800;
}

/* =========================================================
   Lists / chips / breadcrumbs
   ========================================================= */

.chips,
.tag-list{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
  margin: 0;
}

.chip,
.tag{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumbs a{
  color: var(--accent-strong);
  font-weight: 700;
}

/* =========================================================
   Figures / captions / maps
   ========================================================= */

.figure{
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.figure img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.figure figcaption{
  padding: 0.85rem 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  background: var(--surface-2);
}

.map-embed,
.video-embed{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #dfeef4;
  aspect-ratio: 16 / 9;
}

.map-embed iframe,
.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   Forms / search / newsletter
   ========================================================= */

.form-row{
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px){
  .form-row.cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row.cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

label{
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand-900);
  font-weight: 700;
}

input,
select,
textarea{
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
}

textarea{
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder{
  color: #6f8896;
}

/* =========================================================
   Tables / responsive tables
   ========================================================= */

.table-wrap{
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
}

table.data-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

table.data-table th,
table.data-table td{
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--text);
}

table.data-table th{
  background: var(--surface-2);
  color: var(--brand-900);
  font-weight: 800;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer{
  margin-top: var(--space-12);
  padding: 2.5rem 0 2rem;
  background:
    linear-gradient(180deg, var(--brand-900) 0%, #071b29 100%);
  color: rgba(255,255,255,0.92);
}

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

.site-footer a:hover{
  color: #ffffff;
}

.site-footer .footer-grid{
  display: grid;
  gap: 1.25rem;
}

.site-footer h2,
.site-footer h3,
.site-footer h4{
  color: #ffffff;
}

.site-footer p,
.site-footer li,
.site-footer small{
  color: rgba(255,255,255,0.84);
}

.site-footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li{
  margin-top: 0.45rem;
}

@media (min-width: 800px){
  .site-footer .footer-grid{
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* =========================================================
   Sections with image backgrounds
   Safe readability by design
   ========================================================= */

.image-section{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  isolation: isolate;
}

.image-section > img,
.image-section > .bg-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.image-section::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.90));
}

.image-section .inner{
  padding: clamp(1.25rem, 3vw, 2rem);
}

.image-section h2,
.image-section h3,
.image-section p,
.image-section li{
  color: var(--text) !important;
}

/* =========================================================
   Utilities
   ========================================================= */

.text-center{ text-align: center; }
.text-right{ text-align: right; }
.text-soft{ color: var(--text-soft) !important; }
.text-muted{ color: var(--text-muted) !important; }
.text-dark{ color: var(--text) !important; }
.text-brand{ color: var(--brand-900) !important; }

.bg-white{ background: #ffffff !important; }
.bg-soft{ background: var(--surface-2) !important; }
.bg-brand-soft{ background: var(--brand-100) !important; }

.rounded-sm{ border-radius: var(--radius-sm); }
.rounded-md{ border-radius: var(--radius-md); }
.rounded-lg{ border-radius: var(--radius-lg); }

.shadow-sm{ box-shadow: var(--shadow-sm); }
.shadow-md{ box-shadow: var(--shadow-md); }
.shadow-lg{ box-shadow: var(--shadow-lg); }

.mb-0{ margin-bottom: 0 !important; }
.mt-0{ margin-top: 0 !important; }
.mb-2{ margin-bottom: 0.5rem !important; }
.mb-4{ margin-bottom: 1rem !important; }
.mb-6{ margin-bottom: 1.5rem !important; }
.mt-4{ margin-top: 1rem !important; }
.mt-6{ margin-top: 1.5rem !important; }
.mt-8{ margin-top: 2rem !important; }

.hidden{
  display: none !important;
}

.visually-hidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   Mobile helpers
   ========================================================= */

.mobile-scroll{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nowrap{
  white-space: nowrap;
}

@media (max-width: 560px){
  .hide-mobile{
    display: none !important;
  }

  .container,
  .container-narrow{
    width: min(100% - 1rem, var(--content));
  }

  .card-body,
  .panel,
  .panel-soft{
    padding: 0.9rem;
  }

  .button,
  .btn{
    width: 100%;
  }

  .hero-actions{
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
