.ff-two-col-card {
  width: 100%;
}

.ff-two-col-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  padding: 32px 32px 48px;
}
  overflow: hidden;
}

.ff-two-col-card__content {
  min-width: 0;
}

.ff-two-col-card__image-col {
  min-width: 0;
}

.ff-two-col-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .ff-two-col-card__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .ff-two-col-card__content {
    order: 1;
  }

  .ff-two-col-card__image-col {
    order: 2;
  }
}

body {
  line-height: 1.4;
  word-break: break-word;
}

html[lang^='ja'] body,
html[lang^='zh'] body,
html[lang^='ko'] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  padding-left: 1rem;
}

ul li,
ol li {
  margin: 0.7rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 1.4rem 0;
}

.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.no-list li {
  margin: 0;
}

/* Code blocks */

pre {
  background: #f6cb4f;
  color: #000;
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  white-space: normal;
  overflow: visible;
}

/* Blockquotes */

blockquote {
  border-left: 10px solid;
  margin: 0 0 1.4rem;
  padding-left: 1rem;
}

/* Horizontal rules */

hr {
  border: 0 none;
  border-bottom: 1px solid;
}

/* Subscripts and superscripts */

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Image alt text */

img {
  font-size: 1rem;
  word-break: normal;
}

.ff-two-col-card__content > *:first-child {
  margin-top: 0;
}

.ff-two-col-card__content > *:last-child {
  margin-bottom: 0;
}

