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

.floweal-post {
  --floweal-ink: #2e183f;
  --floweal-text: #0d0a12;
  --floweal-muted: #6b6675;
  --floweal-border: rgba(46, 24, 63, 0.1);
  --floweal-background: #ffffff;
  --floweal-soft-background: #f7f5f2;

  --floweal-pink: #ffcbcc;
  --floweal-blue: #c5e5ff;
  --floweal-yellow: #ffe37b;
  --floweal-green: #bcf9cd;
  --floweal-purple-soft: #e5dafc;
  --floweal-orange: #ffd3a8;

  --floweal-services: #bcf9cd;
  --floweal-go: #c5e5ff;
  --floweal-desk: #e5dafc;
  --floweal-management: #ffd3a8;

  --floweal-dynamic-1: #ffcbcc;
  --floweal-dynamic-2: #ffe37b;
  --floweal-dynamic-3: #ddf7e5;
  --floweal-dynamic-4: #ddeeff;
  --floweal-dynamic-5: #eee7ff;
  --floweal-dynamic-6: #ffe6cf;
  --floweal-dynamic-7: #f8d9e7;
  --floweal-dynamic-8: #fff0b8;

  --floweal-reading-width: 850px;
  --floweal-wide-width: 1040px;
  --floweal-container: 1280px;

  --floweal-font-display:
    "Bagoss Condensed",
    "BagossCondensed",
    "Inter",
    Arial,
    sans-serif;

  --floweal-font-body:
    "Inter",
    ui-sans-serif,
    system-ui,
    Arial,
    sans-serif;

  position: relative;
  width: 100%;
  overflow: clip;
  color: var(--floweal-text);
  background: var(--floweal-background);
  font-family: var(--floweal-font-body);
}

.floweal-post__container {
  position: relative;
  width: min(calc(100% - 48px), var(--floweal-container));
  margin: 0 auto;
}

.floweal-post__breadcrumb {
  padding-top: 32px;
}

.floweal-post__breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--floweal-muted);
  font-size: 13px;
  line-height: 1.4;
  list-style: none;
}

.floweal-post__breadcrumb li {
  min-width: 0;
}

.floweal-post__breadcrumb a {
  color: var(--floweal-muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.floweal-post__breadcrumb a:hover,
.floweal-post__breadcrumb a:focus-visible {
  color: var(--floweal-ink);
}

.floweal-post__breadcrumb-separator {
  flex: 0 0 auto;
  color: rgba(46, 24, 63, 0.42);
}

.floweal-post__breadcrumb-current {
  overflow: hidden;
  max-width: min(620px, 52vw);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floweal-post__hero {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);
  gap: clamp(54px, 7vw, 96px);
  align-items: center;
  min-height: 560px;
  padding:
    clamp(70px, 7vw, 96px)
    0
    clamp(38px, 4vw, 50px);
}

.floweal-post__hero--no-image {
  grid-template-columns: minmax(0, 720px);
  min-height: 420px;
}

.floweal-post__hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 610px;
}

.floweal-post__hero-tags,
.floweal-post__taxonomy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.floweal-post__hero-tags {
  margin-bottom: 26px;
}

.floweal-post-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  color: var(--floweal-ink);
  border: 1px solid rgba(46, 24, 63, 0.03);
  border-radius: 999px;
  font-family: var(--floweal-font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floweal-post-tag:hover,
.floweal-post-tag:focus-visible {
  color: var(--floweal-ink);
  box-shadow: 0 8px 22px rgba(46, 24, 63, 0.09);
  transform: translateY(-1px);
}

.floweal-post-tag--services {
  background: var(--floweal-services);
}

.floweal-post-tag--go {
  background: var(--floweal-go);
}

.floweal-post-tag--desk {
  background: var(--floweal-desk);
}

.floweal-post-tag--management {
  background: var(--floweal-management);
}

.floweal-post-tag--dynamic {
  background: var(--floweal-dynamic-1);
}

.floweal-post-tag--dynamic:nth-child(even) {
  background: var(--floweal-dynamic-2);
}

@supports selector(:nth-child(1 of .floweal-post-tag--dynamic)) {
  .floweal-post-tag--dynamic:nth-child(
    8n + 1 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-1);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 2 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-2);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 3 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-3);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 4 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-4);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 5 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-5);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 6 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-6);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 7 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-7);
  }

  .floweal-post-tag--dynamic:nth-child(
    8n + 8 of .floweal-post-tag--dynamic
  ) {
    background: var(--floweal-dynamic-8);
  }
}

.floweal-post__title {
  max-width: 610px;
  margin: 0;
  color: var(--floweal-text);
  font-family: var(--floweal-font-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  font-synthesis: none;
  font-kerning: normal;
  line-height: 48px;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.floweal-post__title > span,
.floweal-post__title .hs_cos_wrapper,
.floweal-post__title .hs_cos_wrapper_meta_field {
  color: inherit !important;
  font-family:
    "Bagoss Condensed",
    "BagossCondensed",
    "Inter",
    Arial,
    sans-serif !important;
  font-size: 48px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-synthesis: none !important;
  font-kerning: normal !important;
  line-height: 48px !important;
  letter-spacing: -0.012em !important;
}

.floweal-post__description {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--floweal-muted);
  font-family: var(--floweal-font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.floweal-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--floweal-muted);
  font-family: var(--floweal-font-body);
  font-size: 13px;
  line-height: 1.4;
}

.floweal-post__authors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.floweal-post__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--floweal-text);
  font-weight: 500;
  text-decoration: none;
}

.floweal-post__author img {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--floweal-border);
  border-radius: 50%;
  object-fit: cover;
}

.floweal-post__author:hover,
.floweal-post__author:focus-visible {
  color: var(--floweal-ink);
}

.floweal-post__meta-divider {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.65;
}

.floweal-post__hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  transform: translateZ(0);
}

.floweal-post__featured-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--floweal-soft-background);
  border: 1px solid rgba(46, 24, 63, 0.07);
  border-radius: 24px;
  box-shadow:
    0 32px 70px -42px rgba(46, 24, 63, 0.32),
    0 10px 30px -24px rgba(46, 24, 63, 0.2);
  isolation: isolate;
}

.floweal-post__featured-image {
  position: absolute;
  top: -3%;
  left: 0;
  display: block;
  width: 100%;
  height: 106%;
  object-fit: cover;
  transform:
    translate3d(
      0,
      var(--floweal-parallax-y, 0px),
      0
    )
    scale(1.03);
  transform-origin: center center;
  will-change: transform;
  transition:
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .floweal-post__hero-visual:hover
    .floweal-post__featured-image {
    transform:
      translate3d(
        0,
        var(--floweal-parallax-y, 0px),
        0
      )
      scale(1.045);
  }
}

.floweal-post__article {
  width: min(calc(100% - 48px), var(--floweal-wide-width));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.floweal-post__body {
  width: min(100%, var(--floweal-reading-width));
  margin: 0 auto;
  color: #342d3a;
  font-family: var(--floweal-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.74;
}

.floweal-post__body > :first-child {
  margin-top: 0;
}

.floweal-post__body > :last-child {
  margin-bottom: 0;
}

.floweal-post__body p {
  margin: 0 0 1.5em;
}

.floweal-post__body h2,
.floweal-post__body h3,
.floweal-post__body h4 {
  color: var(--floweal-text);
  font-family: var(--floweal-font-display);
  font-style: normal;
  font-weight: 600;
  font-synthesis: none;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.floweal-post__body h2 {
  margin: 2.1em 0 0.7em;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
}

.floweal-post__body h3 {
  margin: 1.9em 0 0.65em;
  font-size: clamp(24px, 2.2vw, 29px);
  line-height: 1.08;
}

.floweal-post__body h4 {
  margin: 1.7em 0 0.6em;
  font-size: 21px;
  line-height: 1.12;
}

.floweal-post__body a {
  color: var(--floweal-ink);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.floweal-post__body a:hover,
.floweal-post__body a:focus-visible {
  color: #1f102b;
}

.floweal-post__body ul,
.floweal-post__body ol {
  margin: 0 0 1.7em;
  padding-left: 1.4em;
}

.floweal-post__body li {
  margin-bottom: 0.6em;
}

.floweal-post__body li::marker {
  color: var(--floweal-ink);
}

.floweal-post__body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.floweal-post__body figure {
  margin: 2.6em 0;
}

.floweal-post__body figcaption {
  margin-top: 10px;
  color: var(--floweal-muted);
  font-size: 13px;
  line-height: 1.5;
}

.floweal-post__body blockquote {
  margin: 2.6em 0;
  padding: 30px 34px;
  color: var(--floweal-text);
  background:
    linear-gradient(
      120deg,
      rgba(229, 218, 252, 0.5),
      rgba(247, 245, 242, 0.72)
    );
  border: 1px solid rgba(46, 24, 63, 0.09);
  border-left: 4px solid var(--floweal-purple-soft);
  border-radius: 22px;
  font-family: var(--floweal-font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.floweal-post__body hr {
  height: 1px;
  margin: 3em 0;
  background: var(--floweal-border);
  border: 0;
}

.floweal-post__body iframe,
.floweal-post__body video {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 22px;
}

.floweal-post__body table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 15px;
}

.floweal-post__body th,
.floweal-post__body td {
  padding: 14px 16px;
  border: 1px solid var(--floweal-border);
  text-align: left;
  vertical-align: top;
}

.floweal-post__body th {
  color: var(--floweal-text);
  background: var(--floweal-soft-background);
  font-weight: 600;
}

.floweal-post__taxonomy {
  width: min(100%, var(--floweal-reading-width));
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--floweal-border);
}

.floweal-post__taxonomy h2 {
  margin: 0 0 18px;
  color: var(--floweal-muted);
  font-family: var(--floweal-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floweal-post__author-section {
  width: min(100%, var(--floweal-reading-width));
  margin: 52px auto 0;
}

.floweal-post__author-eyebrow {
  margin: 0 0 18px;
  color: var(--floweal-muted);
  font-family: var(--floweal-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floweal-post__author-cards {
  display: grid;
  gap: 16px;
}

.floweal-author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px;
  background: var(--floweal-soft-background);
  border: 1px solid var(--floweal-border);
  border-radius: 22px;
}

.floweal-author-card__avatar {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.floweal-author-card__content h2 {
  margin: 0;
  color: var(--floweal-text);
  font-family: var(--floweal-font-display);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  font-synthesis: none;
  line-height: 1.05;
}

.floweal-author-card__content h2 a {
  color: inherit;
  text-decoration: none;
}

.floweal-author-card__content h2 a:hover,
.floweal-author-card__content h2 a:focus-visible {
  color: var(--floweal-ink);
}

.floweal-author-card__bio {
  margin-top: 8px;
  color: var(--floweal-muted);
  font-size: 14px;
  line-height: 1.6;
}

.floweal-author-card__bio p {
  margin: 0;
}

.floweal-author-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.floweal-author-card__links a {
  color: var(--floweal-ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.floweal-author-card__links a:hover,
.floweal-author-card__links a:focus-visible {
  color: #1f102b;
}

.floweal-motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 600ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--floweal-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.floweal-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.floweal-post a:focus-visible {
  outline: 2px solid rgba(46, 24, 63, 0.4);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .floweal-post__container {
    width: min(calc(100% - 40px), var(--floweal-container));
  }

  .floweal-post__hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    padding:
      58px
      0
      32px;
  }

  .floweal-post__hero-copy {
    max-width: 760px;
  }

  .floweal-post__title {
    max-width: 720px;
    font-size: 44px;
    line-height: 44px;
  }

  .floweal-post__title > span,
  .floweal-post__title .hs_cos_wrapper,
  .floweal-post__title .hs_cos_wrapper_meta_field {
    font-size: 44px !important;
    line-height: 44px !important;
  }

  .floweal-post__description {
    max-width: 650px;
  }

  .floweal-post__hero-visual {
    width: 100%;
    max-width: 900px;
  }

  .floweal-post__featured-image-frame {
    aspect-ratio: 16 / 9;
  }

  .floweal-post__article {
    width: min(calc(100% - 40px), var(--floweal-wide-width));
    padding: 14px 0 40px;
  }
}

@media (max-width: 640px) {
  .floweal-post__container {
    width: calc(100% - 32px);
  }

  .floweal-post__breadcrumb {
    padding-top: 24px;
  }

  .floweal-post__breadcrumb ol {
    gap: 8px;
    font-size: 12px;
  }

  .floweal-post__breadcrumb-current {
    max-width: 42vw;
  }

  .floweal-post__hero {
    gap: 28px;
    padding:
      42px
      0
      24px;
  }

  .floweal-post__hero-copy {
    max-width: none;
  }

  .floweal-post__hero-tags {
    margin-bottom: 20px;
  }

  .floweal-post-tag {
    min-height: 29px;
    padding: 5px 11px;
    font-size: 11px;
  }

  .floweal-post__title {
    max-width: none;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.02;
  }

  .floweal-post__title > span,
  .floweal-post__title .hs_cos_wrapper,
  .floweal-post__title .hs_cos_wrapper_meta_field {
    font-size: clamp(34px, 10vw, 40px) !important;
    line-height: 1.02 !important;
  }

  .floweal-post__description {
    max-width: none;
    margin-top: 18px;
    font-size: 14px;
    line-height: 20px;
  }

  .floweal-post__meta {
    gap: 10px;
    margin-top: 24px;
    font-size: 12px;
  }

  .floweal-post__author img {
    width: 36px;
    height: 36px;
  }

  .floweal-post__featured-image-frame {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .floweal-post__featured-image {
    top: -2%;
    height: 104%;
  }

  .floweal-post__article {
    width: calc(100% - 40px);
    padding:
      10px
      0
      36px;
  }

  .floweal-post__body {
    width: 100%;
    font-size: 16px;
    line-height: 1.68;
  }

  .floweal-post__body p {
    margin-bottom: 1.45em;
  }

  .floweal-post__body h2 {
    margin-top: 1.95em;
    font-size: 28px;
    line-height: 1.08;
  }

  .floweal-post__body h3 {
    margin-top: 1.75em;
    font-size: 23px;
    line-height: 1.1;
  }

  .floweal-post__body h4 {
    font-size: 19px;
  }

  .floweal-post__body blockquote {
    padding: 22px;
    border-radius: 18px;
    font-size: 18px;
  }

  .floweal-post__taxonomy {
    margin-top: 44px;
  }

  .floweal-post__author-section {
    margin-top: 42px;
  }

  .floweal-author-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px;
  }

  .floweal-author-card__avatar {
    width: 72px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floweal-post *,
  .floweal-post *::before,
  .floweal-post *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floweal-post__featured-image {
    transform: scale(1.01) !important;
  }

  .floweal-motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}