:root {
  /* app.ftenso.com に近い Bootstrap 系の青・白・グレー基調 */
  --bg: #f8f9fa;
  --bg-soft: #e7f1ff;
  --white: #ffffff;
  --navy: #212529;
  --text: #343a40;
  --muted: #6c757d;
  --line: #dee2e6;
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --accent: #0dcaf0;
  --green: #198754;
  --yellow: #ffc107;
  --danger: #dc3545;
  --shadow: 0 18px 48px rgba(13, 110, 253, 0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.35rem;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(16, 33, 63, 0.18);
}

.btn-outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-height: 52px;
  padding-inline: 26px;
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(36, 107, 254, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(22, 163, 184, 0.16), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: #e7f1ff;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.86rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-lead strong {
  color: var(--navy);
  background: linear-gradient(transparent 62%, rgba(36, 107, 254, 0.18) 62%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-points li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  position: relative;
}

.mock-window {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: #fbfcff;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e3e9f2;
}

.window-bar span:nth-child(1) {
  background: #ff6b6b;
}

.window-bar span:nth-child(2) {
  background: #ffc107;
}

.window-bar span:nth-child(3) {
  background: #198754;
}

.mock-body {
  padding: 26px;
}

.drop-area {
  margin-bottom: 20px;
  padding: 30px;
  text-align: center;
  border: 2px dashed #b9c9e7;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.drop-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--primary);
  font-size: 1.9rem;
  border-radius: 18px;
  background: #e7f1ff;
}

.drop-area strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.drop-area span {
  color: var(--muted);
  font-size: 0.92rem;
}

.activity-list {
  display: grid;
  gap: 12px;
}

.activity-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.activity-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
  border-radius: 12px;
  background: #e7f1ff;
}

.activity-item strong {
  display: block;
  color: var(--navy);
  line-height: 1.35;
}

.activity-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.activity-item em {
  padding: 5px 10px;
  color: #0e7857;
  background: #e8f8f2;
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
  font-size: 0.78rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 33, 63, 0.14);
  font-size: 0.9rem;
}

.floating-card span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.78rem;
}

.floating-card-top {
  top: 26px;
  right: -10px;
}

.floating-card-bottom {
  left: -10px;
  bottom: 34px;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: #fff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #9fc4ff;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card,
.feature-card,
.use-card,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
}

.problem-card {
  padding: 24px;
}

.card-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #a56c00;
  background: #fff4dc;
  border-radius: 12px;
  font-weight: 900;
}

.problem-card h3,
.feature-card h3,
.use-card h3,
.price-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.17rem;
  line-height: 1.4;
}

.problem-card p,
.feature-card p,
.use-card p,
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-step {
  position: relative;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.flow-step::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  color: #9badc6;
  font-weight: 900;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  color: var(--navy);
}

.flow-step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 238px;
  padding: 26px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--primary);
  background: #e7f1ff;
  border-radius: 16px;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card-main {
  color: #fff;
  background: linear-gradient(135deg, #084298, #0d6efd);
  border-color: transparent;
  box-shadow: 0 22px 52px rgba(36, 107, 254, 0.24);
}

.feature-card-main h3,
.feature-card-main p {
  color: #fff;
}

.feature-card-main .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.use-card {
  padding: 24px;
}

.use-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--primary);
  background: #e7f1ff;
  border-radius: 14px;
  font-weight: 900;
}

.security-section {
  background: #fff;
}

.security-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding: 52px;
  color: #fff;
  background: linear-gradient(135deg, #052c65, #0a58ca);
  border-radius: 32px;
}

.security-band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: rgba(36, 107, 254, 0.35);
  border-radius: 50%;
  filter: blur(4px);
}

.security-band > * {
  position: relative;
  z-index: 1;
}

.security-band h2,
.security-band p {
  color: #fff;
}

.security-band p {
  opacity: 0.82;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.security-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.security-grid h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.05rem;
}

.security-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.price-card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 22px 54px rgba(36, 107, 254, 0.18);
  transform: translateY(-8px);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 14px;
  color: var(--primary-dark);
  background: #e7f1ff;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.78rem;
}

.plan-badge-muted {
  color: var(--muted);
  background: #f1f5fb;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 20px;
  color: var(--navy);
}

.price strong {
  font-size: 2.2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: var(--text);
  font-size: 0.94rem;
}

.check-list li {
  display: flex;
  gap: 9px;
}

.check-list li::before {
  content: "✓";
  flex: none;
  color: var(--green);
  font-weight: 900;
}

.spec-list {
  margin-top: 24px;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.news-section {
  padding: 0 0 88px;
}

.news-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
}

.news-box h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.news-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-box li {
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.news-box li:last-child {
  border-bottom: none;
}

.news-box time {
  margin-right: 10px;
  color: var(--primary);
  font-weight: 900;
}

.cta {
  padding: 78px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--primary), #084298);
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 44px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #212529;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  color: #fff;
}

.footer .brand-sub {
  color: rgba(255, 255, 255, 0.62);
}

.footer-copy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.seo-link-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-link-card,
.faq-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
}

.seo-link-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
}

.seo-link-card:hover {
  border-color: rgba(13, 110, 253, 0.45);
  box-shadow: 0 14px 34px rgba(13, 110, 253, 0.12);
  transform: translateY(-1px);
}

.seo-link-card span {
  width: fit-content;
  padding: 5px 10px;
  color: var(--primary-dark);
  background: #e7f1ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.seo-link-card strong,
.faq-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.45;
}

.seo-link-card p,
.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-card h3 {
  margin-bottom: 10px;
}


.concept-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.concept-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.92rem;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.screen-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.section-head + .screen-section {
  border-top: 0;
  padding-top: 0;
}

.screen-copy {
  position: sticky;
  top: 96px;
}

.screen-label {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-copy h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.35;
}

.screen-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.screen-grid {
  display: grid;
  gap: 18px;
}

.screen-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.screen-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.screen-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(33, 37, 41, 0.08);
}

.screen-card picture {
  display: block;
  background: #fff;
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.screen-card figcaption {
  padding: 12px 14px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.workflow-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef5ff 100%);
}

.workflow-split {
  display: grid;
  gap: 22px;
}

.workflow-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(33, 37, 41, 0.07);
}

.workflow-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.32rem;
}

.flow-compact .flow-step {
  padding: 18px 12px;
}

.flow-compact .flow-step span {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}

@media (max-width: 1120px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero-grid,
  .security-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .mock-window {
    transform: none;
  }

  .problem-grid,
  .feature-grid,
  .pricing-grid,
  .seo-link-grid,
  .concept-split {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-section {
    grid-template-columns: 1fr;
  }

  .screen-copy {
    position: static;
  }

  .screen-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .flow-step span {
    margin: 0;
  }

  .flow-step::after {
    display: none;
  }

  .price-card-featured {
    transform: none;
  }

  .news-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-sub {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .btn {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.9rem;
  }

  .btn-large {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-actions {
    display: grid;
  }

  .problem-grid,
  .feature-grid,
  .use-grid,
  .security-grid,
  .pricing-grid,
  .concept-split,
  .seo-link-grid,
  .faq-grid,
  .screen-grid-two,
  .screen-grid-three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .screen-section {
    padding: 26px 0;
  }

  .security-band {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .mock-body {
    padding: 18px;
  }

  .drop-area {
    padding: 24px 16px;
  }

  .activity-item {
    grid-template-columns: 34px 1fr;
  }

  .activity-item em {
    grid-column: 2;
    justify-self: start;
  }

  .floating-card {
    display: none;
  }

  .news-section {
    padding-bottom: 64px;
  }

  .footer-bottom {
    display: grid;
  }
}
