@charset "UTF-8";
/*
 * Single post.
 *
 * Loaded only on that template, via inc/enqueue.php. Every selector is kf-post-
 * prefixed. The "more articles" card is the listing card written out again
 * here — per the project rule each template owns its component CSS.
 */
/* 48px, doubled from 24: more air between the site header and the title. */
.kf-post {
  padding: 48px 0 64px;
}

/* -------------------------------------------------------------------------
 * Header
 * ---------------------------------------------------------------------- */
.kf-post__header {
  margin: 0 0 28px;
}

/*
 * The arrow sits left of the label and the pair slides left on hover, as on the
 * homepage's section links.
 *
 * Block, but only as wide as its text: the title below is inline-block so its
 * rule can be measured from the words, and two inline-blocks sit on the same
 * line — the back link ended up beside the heading. `fit-content` keeps the
 * clickable area on the words rather than the whole column.
 */
.kf-post__back {
  position: relative;
  display: block;
  width: fit-content;
  padding-left: 24px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0c7d5f;
  transition: color 0.15s ease, transform 0.15s ease;
}
.kf-post__back::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M11 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M11 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translateY(-50%);
}
.kf-post__back:hover {
  color: #0f9d78;
  transform: translateX(-4px);
}

/*
 * inline-block so the box shrinks to the words and the rule below can be
 * measured from the title rather than from the reading column.
 */
.kf-post__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 20px;
  /* Half the previous size: the clamp topped out at 36px on desktop. */
  font-size: 18px;
  line-height: 1.35;
  color: #1f2933;
}
.kf-post__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc((100% + 14px) / 2);
  height: 2px;
  background: #0f9d78;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(15, 157, 120, 0.35);
}

/* -------------------------------------------------------------------------
 * Featured image
 * ---------------------------------------------------------------------- */
/*
 * Held in from the column edges so the picture reads a little smaller than the
 * text it introduces, rather than running the full width of the page.
 */
.kf-post__media {
  max-width: 960px;
  /* Left aligned in the column, not centred. */
  margin: 0 0 32px;
  background: #f3f9f7;
  border-radius: 12px;
  overflow: hidden;
}

/* Sized to width, so it is never cropped or letterboxed. */
.kf-post__image {
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------
 * Article body
 * ---------------------------------------------------------------------- */
/*
 * The article sits in the same panel the product page's description tab uses:
 * the footer's tint, 12px corners, 50px of padding.
 */
.kf-post__content {
  padding: 50px;
  background: #f3f9f7;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #5c6b73;
}
.kf-post__content p {
  margin: 0 0 18px;
}
.kf-post__content h2 {
  margin: 36px 0 14px;
  font-size: 24px;
  line-height: 1.3;
  text-align: left;
  color: #1f2933;
}
.kf-post__content h3 {
  margin: 28px 0 12px;
  font-size: 19px;
  line-height: 1.35;
  text-align: left;
  color: #1f2933;
}
.kf-post__content a {
  color: #0c7d5f;
  text-decoration: underline;
}
.kf-post__content {
  /*
   * Bold terms take the house green, as in the FAQ and the information rows.
   * Scoped to body copy: these articles carry headings written as
   * `<h2><strong>Kamagra</strong></h2>`, which must stay dark.
   */
}
.kf-post__content p strong,
.kf-post__content li strong {
  color: #0c7d5f;
}
.kf-post__content ul,
.kf-post__content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.kf-post__content li {
  margin-bottom: 8px;
}
.kf-post__content li::marker {
  color: #0f9d78;
}
.kf-post__content img {
  height: auto;
  border-radius: 12px;
}
.kf-post__content {
  /* White, not tint: the panel behind it is already the tint. */
}
.kf-post__content blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  background: #ffffff;
  border-left: 3px solid #0f9d78;
  border-radius: 8px;
}
.kf-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.kf-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.kf-post__content th,
.kf-post__content td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #e2e8e6;
}

.kf-post__pages {
  margin: 24px 0 0;
  font-size: 14px;
  color: #5c6b73;
}

/* -------------------------------------------------------------------------
 * More articles
 * ---------------------------------------------------------------------- */
.kf-post-related {
  margin-top: clamp(40px, 5vw, 64px);
}
.kf-post-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.kf-post-related__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 20px;
  padding-left: 22px;
  font-size: 28px;
  color: #1f2933;
  /*
   * Section marker: the dot-and-halo from the jviens hero kicker, in this
   * theme's green — the same mark the homepage sections carry.
   */
}
.kf-post-related__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f9d78;
  box-shadow: 0 0 0 4px rgba(15, 157, 120, 0.2);
}
.kf-post-related__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% + 14px);
  height: 2px;
  background: #0f9d78;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(15, 157, 120, 0.35);
  transition: box-shadow 0.15s ease;
}
.kf-post-related__head:hover .kf-post-related__title::after {
  box-shadow: 0 4px 10px rgba(15, 157, 120, 0.45);
}
.kf-post-related__all {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #0c7d5f;
  white-space: nowrap;
  transition: color 0.15s ease, transform 0.15s ease;
}
.kf-post-related__all::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M11 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5'/%3E%3Cpath d='M11 6l-6 6 6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translateY(-50%);
}
.kf-post-related__all:hover {
  color: #0f9d78;
  transform: translateX(-4px);
}
.kf-post-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.kf-post-related__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.kf-post-related__card:hover {
  border-color: #0f9d78;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.kf-post-related__card:focus-visible {
  outline: 2px solid #0f9d78;
  outline-offset: 3px;
}
.kf-post-related__media {
  display: flex;
  background: #f3f9f7;
  overflow: hidden;
}
.kf-post-related__image {
  display: block;
  width: 100%;
  height: auto;
}
.kf-post-related__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  padding: 20px;
}
.kf-post-related__date {
  font-size: 13px;
  color: #5c6b73;
}
.kf-post-related__heading {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1f2933;
}
.kf-post-related__card:hover .kf-post-related__heading {
  color: #0c7d5f;
}
.kf-post-related__excerpt {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: #5c6b73;
}
.kf-post-related {
  /* Pushed to the foot of the card so every card's link sits on one line. */
}
.kf-post-related__more {
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #0c7d5f;
}

/* -------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------- */
@media (max-width: 900px) {
  .kf-post-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .kf-post__content {
    padding: 24px 20px;
  }
  .kf-post-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .kf-post-related__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .kf-post *,
  .kf-post *::before,
  .kf-post *::after {
    transition-duration: 0.01ms !important;
  }
}
