/* Kanvartfuly content shortcodes — palette-matched */
.kf-c {
  --teal: #01726f;
  --teal-deep: #024c4a;
  --mint: #3cd3c4;
  --mint-light: #ade5a3;
  --coral: #e02045;
  --coral-soft: #ff7d96;
  --yellow: #fcc12b;
  --cream: #fdf8ef;
  --lavender: #b9a6e8;
  --peach: #ffb59e;
  font-family: "Montserrat", sans-serif;
  color: var(--teal-deep);
}
.kf-c-empty {
  text-align: center;
  color: #888;
  padding: 48px 0;
  font-family: "Montserrat", sans-serif;
}

/* ---- Walk-in tiles ---- */
.kf-walkins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}
.kf-tile {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(1, 114, 111, 0.1);
  transition: transform 0.18s ease;
}
.kf-tile:hover {
  transform: translateY(-3px);
}
.kf-tile-img {
  aspect-ratio: 1/1;
  background: #eef3f2;
}
.kf-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kf-tile-label {
  padding: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 14px;
}

/* ---- Walk-in Info Section ---- */
.kf-walkin-info {
  max-width: 1040px;
  margin: -10px auto 52px;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(1, 114, 111, 0.08);
}

.kf-walkin-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.kf-walkin-info-item svg {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}
.kf-walkin-info-item strong {
  font-size: 15px;
  margin-bottom: 4px;
}

.kf-walkin-info-item p {
  font-size: 14px;
  line-height: 1.45;
}

/* ---- Walk-in Carousel ---- */
.kf-walkin-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

.kf-walkin-slider-arrow {
  background: #e02045;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kf-walkin-slider-arrow:hover:not(:disabled) {
  background: #01726f;
}

.kf-walkin-slider-arrow:disabled {
  background: #f7a8b8;
  cursor: not-allowed;
}

.kf-walkin-slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.kf-activity-grid {
  display: flex;
  gap: 26px;
  transition: transform 0.3s ease;
}

.kf-activity-tile {
  flex: 0 0 calc(20% - 21px);
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.kf-activity-tile-img {
  height: 260px !important;
  aspect-ratio: auto !important;
  background: transparent !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.kf-activity-tile-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.kf-activity-tile-label {
  background: #ff7d96;
  color: #fff;
  min-height: 70px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.kf-activity-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kf-activity-tile-meta {
  display: none;
}

.kf-walkin-slider-dots {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.kf-walkin-slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d7e2e1;
  cursor: pointer;
}

.kf-walkin-slider-dots button[aria-current="true"] {
  background: #e02045;
}

/* =========================================================
   WALK-IN CAROUSEL RESPONSIVE FIX
   ========================================================= */

.kf-walkin-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
  margin-bottom: 24px;
}

.kf-walkin-slider-viewport {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
}

.kf-activity-grid {
  display: flex;
  gap: 26px;
  width: 100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

.kf-activity-tile {
  flex: 0 0 calc((100% - 104px) / 5);
  min-width: 0;
}

/* Tablet: 3 cards */
@media (max-width: 1024px) {
  .kf-walkin-slider {
    gap: 14px;
  }

  .kf-activity-grid {
    gap: 16px;
  }

  .kf-activity-tile {
    flex-basis: calc((100% - 32px) / 3);
  }

  .kf-walkin-slider-arrow {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    font-size: 24px;
  }
}

/* Mobile: 2 proper cards */
@media (max-width: 640px) {
  .kf-walkin-slider {
    display: block;
    width: 100%;
    padding: 0 42px;
  }

  .kf-walkin-slider-viewport {
    width: 100%;
    border-radius: 14px;
  }

  .kf-activity-grid {
    gap: 12px;
  }

  .kf-activity-tile {
    flex: 0 0 calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }

  .kf-activity-tile-img {
    height: 210px !important;
  }

  .kf-activity-tile-label {
    min-height: 64px;
    padding: 10px 7px;
    font-size: 11px;
    line-height: 1.25;
  }

  .kf-walkin-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 36px;
    height: 36px;
    font-size: 21px;
    transform: translateY(-50%);
  }

  .kf-walkin-slider-arrow:first-of-type {
    left: 0;
  }

  .kf-walkin-slider-arrow:last-of-type {
    right: 0;
  }

  .kf-walkin-slider-dots {
    margin-top: 18px;
    gap: 7px;
    flex-wrap: wrap;
  }

  .kf-walkin-slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
  }

  .kf-walkin-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 auto 36px;
    padding: 20px 18px;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .kf-walkin-slider {
    padding: 0 36px;
  }

  .kf-activity-grid {
    gap: 10px;
  }

  .kf-activity-tile {
    flex-basis: calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }

  .kf-activity-tile-img {
    height: 185px !important;
  }

  .kf-activity-tile-label {
    min-height: 58px;
    font-size: 10px;
    padding: 8px 5px;
  }

  .kf-walkin-slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }
}

/* ---- Events ---- */
.kf-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.kf-event {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eef3f2;
  box-shadow: 0 6px 18px rgba(1, 114, 111, 0.1);
}
.kf-event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kf-event-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
}
.kf-event-label:hover {
  white-space: normal;
  word-wrap: break-word;
  overflow: visible;
}
.kf-ev-teal {
  background: var(--teal);
}
.kf-ev-coral {
  background: var(--coral);
}
.kf-ev-mint {
  background: var(--mint);
  color: var(--teal-deep);
}
.kf-ev-yellow {
  background: var(--yellow);
  color: var(--teal-deep);
}
.kf-ev-lavender {
  background: var(--lavender);
}
.kf-ev-peach {
  background: var(--peach);
  color: var(--teal-deep);
}

/* =========================================================
   FEATURED WORKSHOPS
   One item: original image-left / details-right layout
   Two items: two equal, symmetrical cards
   ========================================================= */

.featured-wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px 24px;
}

.featured-wrap,
.featured-wrap * {
  box-sizing: border-box;
}

.featured-card {
  min-width: 0;
}

.featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eef3f2;
  box-shadow: 0 20px 50px rgba(1, 114, 111, 0.14);
}

.featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-flag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e02045;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.featured-content {
  min-width: 0;
}

.featured-content .section-eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #e02045 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured-content .section-title {
  margin: 0 0 16px;
  color: #01726f;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.featured-desc {
  margin: 0 0 30px;
  color: #445;
  font-size: 17px;
  line-height: 1.7;
}

.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin: 0 0 34px;
  padding: 24px 28px;
  border: 1px solid rgba(1, 114, 111, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(1, 114, 111, 0.08);
}

.featured-meta-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: #e02045;
}

.featured-meta-item svg {
  width: 22px;
  height: 22px;
}

.featured-meta-item strong {
  display: block;
  color: #024c4a;
  font-size: 16px;
  line-height: 1.3;
}

.featured-meta-sub {
  margin-top: 2px;
  color: #556;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.featured-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.featured-price {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.featured-price-label {
  color: #445;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured-price-value {
  color: #e02045;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #01726f;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-feature:hover {
  background: #024c4a;
  color: #fff !important;
  transform: translateY(-2px);
}

/* One featured workshop: preserve the original wide design. */
.featured-wrap:not(.featured-wrap-two) .featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.featured-wrap:not(.featured-wrap-two) .featured-image {
  height: 560px;
}

.featured-wrap:not(.featured-wrap-two) .featured-content {
  padding: 12px 0;
}

.featured-wrap:not(.featured-wrap-two) .featured-desc {
  max-width: 560px;
}

/* Two featured workshops: equal cards and aligned content. */
.featured-wrap-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: stretch;
}

.featured-wrap-two .featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.featured-wrap-two .featured-image {
  width: 100%;
  height: 450px;
  flex: 0 0 450px;
}

.featured-wrap-two .featured-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 24px;
}

.featured-wrap-two .section-title {
  min-height: 2.16em;
  font-size: 40px;
}

.featured-wrap-two .featured-desc {
  min-height: 6.8em;
  margin-bottom: 24px;
  font-size: 16px;
}

.featured-wrap-two .featured-meta {
  min-height: 238px;
  margin-bottom: 0;
}

.featured-wrap-two .featured-cta-row {
  margin-top: auto;
  padding-top: 28px;
}

/* Medium desktop / tablet. */
@media (max-width: 1050px) {
  .featured-wrap:not(.featured-wrap-two) .featured-card {
    gap: 38px;
  }

  .featured-wrap:not(.featured-wrap-two) .featured-image {
    height: 470px;
  }

  .featured-wrap-two {
    gap: 28px;
  }

  .featured-wrap-two .featured-image {
    height: 360px;
    flex-basis: 360px;
  }

  .featured-wrap-two .section-title {
    min-height: 0;
    font-size: 34px;
  }

  .featured-wrap-two .featured-desc {
    min-height: 0;
  }
}

/* Stack both layouts on tablets and phones. */
@media (max-width: 820px) {
  .featured-wrap {
    padding: 28px 18px;
  }

  .featured-wrap:not(.featured-wrap-two) .featured-card,
  .featured-wrap-two {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .featured-wrap:not(.featured-wrap-two) .featured-image,
  .featured-wrap-two .featured-image {
    height: 390px;
    flex-basis: auto;
  }

  .featured-wrap-two .featured-card {
    height: auto;
  }

  .featured-wrap-two .featured-content {
    display: block;
  }

  .featured-wrap-two .featured-meta {
    min-height: 0;
  }

  .featured-wrap-two .featured-cta-row {
    margin-top: 0;
    padding-top: 26px;
  }
}

/* Small mobile. */
@media (max-width: 560px) {
  .featured-wrap {
    padding: 22px 14px;
  }

  .featured-wrap:not(.featured-wrap-two) .featured-image,
  .featured-wrap-two .featured-image {
    height: 300px;
  }

  .featured-flag {
    top: 16px;
    left: 16px;
    padding: 9px 14px;
    font-size: 11px;
  }

  .featured-content .section-title,
  .featured-wrap-two .section-title {
    font-size: 32px;
  }

  .featured-desc,
  .featured-wrap-two .featured-desc {
    font-size: 15px;
  }

  .featured-meta {
    padding: 22px 18px;
  }

  .featured-cta-row {
    align-items: stretch;
    gap: 18px;
  }

  .btn-feature {
    width: 100%;
  }
}

/* ---- Schedule ---- */
.kf-schedule table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(1, 114, 111, 0.1);
}
.kf-schedule td {
  padding: 14px 18px;
  border-bottom: 1px solid #eef0f0;
  font-size: 14px;
}
.kf-schedule tr:last-child td {
  border-bottom: none;
}
.kf-sch-day {
  font-weight: 800;
  color: var(--teal);
  width: 34%;
}
.kf-sch-hours {
  font-weight: 700;
  color: var(--teal-deep);
}
.kf-sch-act {
  color: #667;
}
.kf-schedule tr.is-closed {
  opacity: 0.55;
}

/* ---- Contact ---- */
.kf-contact {
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(1, 114, 111, 0.1);
}
.kf-cfield {
  margin-bottom: 14px;
}
.kf-cfield label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kf-cfield input,
.kf-cfield textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #d7e2e1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}
.kf-cfield input:focus,
.kf-cfield textarea:focus {
  outline: none;
  border-color: var(--mint);
}
.kf-vhoney {
  position: absolute !important;
  left: -9999px !important;
  height: 0;
  width: 0;
  opacity: 0;
}
.kf-csubmit {
  background: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kf-csubmit:disabled {
  background: #9bb3b2;
  cursor: wait;
}
.kf-cmsg {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.kf-cmsg.is-error {
  color: var(--coral);
}
.kf-cmsg.is-ok {
  color: var(--teal);
}

/* ---- Manage booking ---- */
.kf-manage {
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(1, 114, 111, 0.1);
}
.kf-manage-title {
  margin: 0 0 16px;
  color: var(--teal);
  font-weight: 800;
  font-size: 20px;
}
.kf-manage-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.kf-manage-table td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #eef0f0;
  color: #445;
}
.kf-manage-table td:first-child {
  color: #778;
  width: 40%;
}
.kf-manage-table tr:last-child td {
  border-bottom: none;
}
.kf-manage-note {
  font-size: 13px;
  color: #5a6a6a;
  line-height: 1.6;
  margin: 0 0 16px;
}
.kf-manage-cancel {
  background: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.kf-manage-cancel:disabled {
  background: #9bb3b2;
  cursor: wait;
}

.kf-manage-seats {
  margin: 4px 0 18px;
}
.kf-manage-seats label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kf-manage-seats-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.kf-manage-seats-row input {
  width: 80px;
  padding: 10px 12px;
  border: 1.5px solid #d7e2e1;
  border-radius: 10px;
  font-size: 14px;
}
.kf-manage-update {
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.kf-manage-update:disabled {
  background: #9bb3b2;
  cursor: wait;
}

/* ---- Blog ---- */
.kf-blog-grid {
  display: grid;
  gap: 24px;
}
.kf-blog-grid.kf-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.kf-blog-grid.kf-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.kf-blog-grid.kf-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.kf-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(1, 114, 111, 0.1);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.kf-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(1, 114, 111, 0.16);
}
.kf-blog-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef3f2;
  border-radius: 20px 20px 0 0;
}
.kf-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kf-blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.kf-blog-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}
.kf-blog-body h3 a {
  color: var(--teal);
  text-decoration: none;
}
.kf-blog-body h3 a:hover {
  color: var(--teal-deep);
}
.kf-blog-excerpt {
  margin: 0;
  font-size: 14px;
  color: #3f6f6c;
  line-height: 1.6;
  flex: 1;
}
.kf-btn-blog {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.kf-btn-blog:hover {
  transform: scale(1.04);
  background: var(--teal-deep);
  color: #fff;
}
@media (max-width: 1000px) {
  .kf-blog-grid.kf-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .kf-blog-grid {
    grid-template-columns: 1fr !important;
  }
}

.kf-contact .kf-crow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .kf-contact .kf-crow {
    grid-template-columns: 1fr;
  }
}

/* ---- Reserve Your Spot Section ---- */
.kf-reserve-section {
  background: linear-gradient(135deg, #01726f 0%, #024c4a 100%);
  padding: 60px 40px;
  border-radius: 24px;
  margin: 48px 0;
}
.kf-reserve-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.kf-reserve-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 16px;
}
.kf-reserve-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.kf-reserve-content .btn {
  display: inline-block;
}
@media (max-width: 640px) {
  .kf-reserve-section {
    padding: 40px 24px;
  }
  .kf-reserve-content h2 {
    font-size: 24px;
  }
}

/* =========================================================
   FINAL WORKSHOPS PAGE FIX — static preview matching
   Put this at the END of content.css.
   This overrides older workshop card styles above.
   ========================================================= */

.kf-c {
  --kf-static-mint: #ade5a3;
  --kf-static-yellow: #fcc12b;
  --kf-static-pink: #ff7d96;
  --kf-static-teal: #3cd3c4;
  --kf-static-coral: #ff7d96;
  --kf-static-dark: #024c4a;
}

/* Grid spacing like static preview */
.kf-workshops-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
  align-items: stretch !important;
}

/* Card shell */
.kf-workshops-grid .kf-card {
  border: 0 !important;
  border-top: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 18px 35px rgba(1, 114, 111, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

/* Remove any line/strip above image */
.kf-workshops-grid .kf-card::before,
.kf-workshops-grid .kf-card::after {
  content: none !important;
  display: none !important;
}

/* Image height closer to static preview */
.kf-workshops-grid .kf-card-img {
  height: 220px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: #eef3f2 !important;
  flex: 0 0 auto !important;
}

.kf-workshops-grid .kf-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Body */
.kf-workshops-grid .kf-card-body {
  padding: 24px 26px 26px !important;
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
  flex: 1 1 auto !important;
}

/* Text */
.kf-workshops-grid .kf-card-body h3 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

.kf-workshops-grid .kf-card-meta {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.kf-workshops-grid .kf-card-desc {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
}

.kf-workshops-grid .kf-card-fees {
  margin-top: auto !important;
  color: #ffffff !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

/* Seasonal pill */
.kf-workshops-grid .kf-seasonal {
  display: inline-block !important;
  align-self: flex-start !important;
  background: rgba(255, 255, 255, 0.24) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Static preview colors */
.kf-workshops-grid .kf-card--mint .kf-card-body,
.kf-workshops-grid .kf-card--green .kf-card-body {
  background: var(--kf-static-mint) !important;
}

.kf-workshops-grid .kf-card--yellow .kf-card-body,
.kf-workshops-grid .kf-card--gold .kf-card-body {
  background: var(--kf-static-yellow) !important;
}

.kf-workshops-grid .kf-card--pink .kf-card-body,
.kf-workshops-grid .kf-card--coral .kf-card-body,
.kf-workshops-grid .kf-card--red .kf-card-body {
  background: var(--kf-static-pink) !important;
}

.kf-workshops-grid .kf-card--teal .kf-card-body,
.kf-workshops-grid .kf-card--aqua .kf-card-body,
.kf-workshops-grid .kf-card--turquoise .kf-card-body {
  background: var(--kf-static-teal) !important;
}

/* Fallback if plugin outputs wrong/missing color classes */
.kf-workshops-grid .kf-card:nth-child(4n + 1) .kf-card-body {
  background: var(--kf-static-mint) !important;
}

.kf-workshops-grid .kf-card:nth-child(4n + 2) .kf-card-body {
  background: var(--kf-static-yellow) !important;
}

.kf-workshops-grid .kf-card:nth-child(4n + 3) .kf-card-body {
  background: var(--kf-static-pink) !important;
}

.kf-workshops-grid .kf-card:nth-child(4n + 4) .kf-card-body {
  background: var(--kf-static-teal) !important;
}

/* Hide card button on workshops page if plugin outputs one */
.kf-workshops-grid .kf-btn-card {
  display: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .kf-workshops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }
}

@media (max-width: 640px) {
  .kf-workshops-grid {
    grid-template-columns: 1fr !important;
  }

  .kf-workshops-grid .kf-card-img {
    height: 230px !important;
  }

  .kf-workshops-grid .kf-card-body {
    min-height: auto !important;
  }
}
/* =========================================================
   FINAL CORPORATE PAST EVENTS FIX
   Static preview match + WordPress class support
   ========================================================= */

.kf-past-events-section {
  max-width: 1280px !important;
  margin: 0 auto 70px !important;
  padding: 0 24px !important;
}

.kf-past-header {
  text-align: center !important;
  margin-bottom: 52px !important;
}

.kf-past-header .section-eyebrow {
  display: block !important;
  color: #e02045 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.kf-past-header .section-title {
  color: #01726f !important;
  font-size: 42px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  margin: 0 0 24px !important;
}

.kf-past-header .section-sub {
  max-width: 720px !important;
  margin: 0 auto !important;
  color: #445 !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
}

/* Grid */
.kf-past-events-section .kf-events-grid,
.kf-events-grid,
.events-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  width: 100% !important;
}

/* Card */
.kf-past-events-section .kf-event,
.kf-event,
.event-tile {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  aspect-ratio: 4 / 3 !important;
  background: #eef3f2 !important;
  box-shadow: 0 14px 30px rgba(1, 114, 111, 0.1) !important;
}

/* Image */
.kf-past-events-section .kf-event img,
.kf-event img,
.event-tile img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

/* Label full width */
.kf-past-events-section .kf-event-label,
.kf-event-label,
.event-label {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;

  min-height: 58px !important;
  padding: 13px 16px !important;
  box-sizing: border-box !important;

  border-radius: 0 0 18px 18px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.2px !important;

  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

/* Hover: show full title but keep box full width */
.kf-event:hover .kf-event-label,
.event-tile:hover .event-label {
  white-space: normal !important;
  overflow: visible !important;
}

/* Colors */
.kf-ev-coral,
.event-label.coral {
  background: #e02045 !important;
  color: #fff !important;
}

.kf-ev-teal,
.event-label.teal {
  background: #01726f !important;
  color: #fff !important;
}

.kf-ev-yellow,
.event-label.yellow {
  background: #fcc12b !important;
  color: #024c4a !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .kf-past-events-section .kf-events-grid,
  .kf-events-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }
}

@media (max-width: 640px) {
  .kf-past-events-section {
    padding: 0 22px !important;
  }

  .kf-past-header .section-title {
    font-size: 32px !important;
  }

  .kf-past-header .section-sub {
    font-size: 16px !important;
  }

  .kf-past-events-section .kf-events-grid,
  .kf-events-grid,
  .events-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* =========================================================
   FEATURED MARKUP COMPATIBILITY FIX
   Supports:
   1 item  = .featured-wrap > .featured-image + .featured-content
   2 items = .featured-wrap.featured-wrap-two > .featured-card
   Keep this block at the very end of content.css.
   ========================================================= */

/* SINGLE FEATURE — your PHP outputs image/content directly inside .featured-wrap */
.featured-wrap:not(.featured-wrap-two) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) !important;
  gap: 60px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 36px 24px !important;
}

.featured-wrap:not(.featured-wrap-two) > .featured-image {
  width: 100% !important;
  height: 560px !important;
  min-width: 0 !important;
}

.featured-wrap:not(.featured-wrap-two) > .featured-content {
  width: 100% !important;
  min-width: 0 !important;
  padding: 12px 0 !important;
}

/* Also support a single-card wrapper if PHP later adds one */
.featured-wrap:not(.featured-wrap-two) > .featured-card {
  display: contents !important;
}

/* TWO FEATURES */
.featured-wrap.featured-wrap-two {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 46px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 36px 24px !important;
}

.featured-wrap.featured-wrap-two > .featured-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
}

.featured-wrap.featured-wrap-two > .featured-card > .featured-image {
  width: 100% !important;
  height: 450px !important;
  flex: 0 0 450px !important;
}

.featured-wrap.featured-wrap-two > .featured-card > .featured-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  padding-top: 24px !important;
}

.featured-wrap.featured-wrap-two .featured-meta {
  min-height: 238px !important;
}

.featured-wrap.featured-wrap-two .featured-cta-row {
  margin-top: auto !important;
  padding-top: 28px !important;
}

@media (max-width: 1050px) {
  .featured-wrap:not(.featured-wrap-two) {
    gap: 38px !important;
  }

  .featured-wrap:not(.featured-wrap-two) > .featured-image {
    height: 470px !important;
  }

  .featured-wrap.featured-wrap-two {
    gap: 28px !important;
  }

  .featured-wrap.featured-wrap-two > .featured-card > .featured-image {
    height: 360px !important;
    flex-basis: 360px !important;
  }
}

@media (max-width: 820px) {
  .featured-wrap:not(.featured-wrap-two),
  .featured-wrap.featured-wrap-two {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 28px 18px !important;
  }

  .featured-wrap:not(.featured-wrap-two) > .featured-image,
  .featured-wrap.featured-wrap-two > .featured-card > .featured-image {
    height: 390px !important;
    flex-basis: auto !important;
  }

  .featured-wrap.featured-wrap-two > .featured-card {
    height: auto !important;
  }

  .featured-wrap.featured-wrap-two > .featured-card > .featured-content {
    display: block !important;
  }

  .featured-wrap.featured-wrap-two .featured-meta {
    min-height: 0 !important;
  }
}

/* =========================================================
   THREE FEATURED WORKSHOPS
   ========================================================= */

.featured-wrap.featured-wrap-three {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 36px 24px !important;
}

.featured-wrap.featured-wrap-three > .featured-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
}

.featured-wrap.featured-wrap-three > .featured-card > .featured-image {
  width: 100% !important;
  height: 310px !important;
  flex: 0 0 310px !important;
}

.featured-wrap.featured-wrap-three > .featured-card > .featured-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  padding-top: 22px !important;
}

.featured-wrap.featured-wrap-three .section-title {
  min-height: 2.2em !important;
  font-size: 31px !important;
}

.featured-wrap.featured-wrap-three .featured-desc {
  min-height: 7em !important;
  margin-bottom: 22px !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.featured-wrap.featured-wrap-three .featured-meta {
  min-height: 238px !important;
  margin-bottom: 0 !important;
  padding: 22px !important;
}

.featured-wrap.featured-wrap-three .featured-cta-row {
  margin-top: auto !important;
  padding-top: 26px !important;
  gap: 16px !important;
}

.featured-wrap.featured-wrap-three .featured-price-value {
  font-size: 28px !important;
}

.featured-wrap.featured-wrap-three .btn-feature {
  padding: 14px 22px !important;
  font-size: 13px !important;
}

/* Three cards become two columns on smaller desktop/tablet */
@media (max-width: 1100px) {
  .featured-wrap.featured-wrap-three {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }

  .featured-wrap.featured-wrap-three > .featured-card > .featured-image {
    height: 360px !important;
    flex-basis: 360px !important;
  }

  .featured-wrap.featured-wrap-three .section-title,
  .featured-wrap.featured-wrap-three .featured-desc {
    min-height: 0 !important;
  }
}

/* One card per row on mobile */
@media (max-width: 820px) {
  .featured-wrap.featured-wrap-three {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 28px 18px !important;
  }

  .featured-wrap.featured-wrap-three > .featured-card {
    height: auto !important;
  }

  .featured-wrap.featured-wrap-three > .featured-card > .featured-image {
    height: 390px !important;
    flex-basis: auto !important;
  }

  .featured-wrap.featured-wrap-three > .featured-card > .featured-content {
    display: block !important;
  }

  .featured-wrap.featured-wrap-three .featured-meta {
    min-height: 0 !important;
  }

  .featured-wrap.featured-wrap-three .featured-cta-row {
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .featured-wrap.featured-wrap-three {
    padding: 22px 14px !important;
  }

  .featured-wrap.featured-wrap-three > .featured-card > .featured-image {
    height: 300px !important;
  }

  .featured-wrap.featured-wrap-three .section-title {
    font-size: 32px !important;
  }

  .featured-wrap.featured-wrap-three .featured-desc {
    font-size: 15px !important;
  }

  .featured-wrap.featured-wrap-three .btn-feature {
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .featured-wrap:not(.featured-wrap-two),
  .featured-wrap.featured-wrap-two {
    padding: 22px 14px !important;
  }

  .featured-wrap:not(.featured-wrap-two) > .featured-image,
  .featured-wrap.featured-wrap-two > .featured-card > .featured-image {
    height: 300px !important;
  }
}
/* =========================================================
   FINAL WALK-IN CAROUSEL CSS FIX
   ========================================================= */

.kf-walkin-slider,
.kf-walkin-slider * {
  box-sizing: border-box;
}

.kf-walkin-slider {
  width: 100%;
  min-width: 0;
}

.kf-walkin-slider-viewport {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  overflow: hidden;
}

.kf-activity-grid {
  display: flex;
  width: 100%;
  gap: 26px;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Laptop: exactly 5 cards */
.kf-activity-tile {
  flex: 0 0 calc((100% - 104px) / 5);
  width: calc((100% - 104px) / 5);
  min-width: 0;
}

/* Tablet: exactly 3 cards */
@media (max-width: 1024px) {
  .kf-activity-grid {
    gap: 16px;
  }

  .kf-activity-tile {
    flex-basis: calc((100% - 32px) / 3);
    width: calc((100% - 32px) / 3);
  }
}

/* Mobile: exactly 2 cards */
@media (max-width: 640px) {
  .kf-walkin-slider {
    position: relative;
    display: block;
    padding: 0 42px;
  }

  .kf-walkin-slider-viewport {
    width: 100%;
  }

  .kf-activity-grid {
    gap: 12px;
  }

  .kf-activity-tile {
    flex-basis: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }

  .kf-walkin-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .kf-walkin-slider-arrow.prev {
    left: 0;
  }

  .kf-walkin-slider-arrow.next {
    right: 0;
  }
}

@media (max-width: 390px) {
  .kf-walkin-slider {
    padding: 0 36px;
  }

  .kf-activity-grid {
    gap: 10px;
  }

  .kf-activity-tile {
    flex-basis: calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }
}

/* =========================================================
   WORKSHOP WEEKLY SCHEDULE NOTICE — MINIMAL
   ========================================================= */

.kf-workshops-schedule-note {
  max-width: 900px;
  margin: 0 auto 38px;
  padding: 4px 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;

  color: #024c4a;

  /* Remove the box */
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Yellow decorative sparkle */
.kf-workshops-schedule-note::before {
  content: "✦";

  color: #f8bd2a;
  font-size: 17px;
  line-height: 1;

  flex-shrink: 0;
}

/* Schedule link */
.kf-workshops-schedule-note a {
  color: #e02045 !important;
  font-weight: 800;

  text-decoration: none !important;
  border-bottom: 1.5px solid #e02045;

  padding-bottom: 1px;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

/* Hover */
.kf-workshops-schedule-note a:hover {
  color: #01726f !important;
  border-color: #01726f;
}

/* Mobile */
@media (max-width: 768px) {
  .kf-workshops-schedule-note {
    margin: 0 18px 28px;
    padding: 2px 0;

    font-size: 14px;
    line-height: 1.55;

    gap: 8px;
  }

  .kf-workshops-schedule-note::before {
    font-size: 15px;
  }
}
/* =========================================================
   THREE FEATURED CARDS — PRICE + BUTTON ALIGNMENT FIX
   ========================================================= */

.featured-wrap.featured-wrap-three .featured-cta-row {
  display: grid !important;
  grid-template-columns: max-content minmax(0, 1fr) !important;
  align-items: end !important;
  gap: 14px !important;
  width: 100% !important;
}

.featured-wrap.featured-wrap-three .featured-price {
  min-width: 0 !important;
}

.featured-wrap.featured-wrap-three .featured-price-value {
  font-size: 20px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.featured-wrap.featured-wrap-three .btn-feature {
  width: 100% !important;
  min-width: 0 !important;
  padding: 14px 12px !important;
  font-size: 12px !important;
  white-space: nowrap !important;
}

@media (max-width: 1100px) {
  .featured-wrap.featured-wrap-three .featured-cta-row {
    grid-template-columns: 1fr !important;
  }

  .featured-wrap.featured-wrap-three .btn-feature {
    width: 100% !important;
  }
}
/* =========================================================
   FEATURED WORKSHOPS — FEE INSIDE WHITE BOX
   ========================================================= */

.featured-meta-price {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.featured-meta-price .featured-price-label {
  display: block !important;
  margin-bottom: 3px !important;
  color: #445 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.featured-meta-price .featured-price-value {
  display: block !important;
  color: #e02045 !important;

  /* Smaller price */
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;

  white-space: normal !important;
}

/* Button is now alone underneath */
.featured-wrap.featured-wrap-three .featured-cta-row {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 26px !important;

  /* No divider/footer line */
  border: none !important;
  border-top: none !important;
}

.featured-wrap.featured-wrap-three .btn-feature {
  width: 100% !important;
}

/* Give the white information box enough room for the fee */
.featured-wrap.featured-wrap-three .featured-meta {
  min-height: 285px !important;
}

/* Mobile/tablet */
@media (max-width: 1100px) {
  .featured-wrap.featured-wrap-three .featured-meta {
    min-height: 0 !important;
  }
}

/* =========================================================
   FEATURED WORKSHOPS — EQUAL DESCRIPTION HEIGHT
   ========================================================= */

.featured-wrap.featured-wrap-three .featured-desc {
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;
  margin-bottom: 22px !important;
  overflow: hidden !important;

  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
}

/* Tablet/mobile: let the text use its natural height */
@media (max-width: 820px) {
  .featured-wrap.featured-wrap-three .featured-desc {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
  }
}
/* =========================================================
   CONTACT FORM — PHONE / WHATSAPP
   ========================================================= */

.kf-contact-phone-wrap {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 8px;
  width: 100%;
  align-items: center;
}

.kf-contact-phone-code,
.kf-contact-phone-wrap #kfCPhone {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #d7e2e1;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
}

.kf-contact-phone-code {
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: #024c4a;
  cursor: pointer;
}

.kf-contact-phone-wrap #kfCPhone {
  padding: 0 12px;
  font-size: 14px;
}

.kf-contact-phone-code:focus,
.kf-contact-phone-wrap #kfCPhone:focus {
  outline: none;
  border-color: #01726f;
  box-shadow: 0 0 0 3px rgba(1, 114, 111, 0.08);
}

@media (max-width: 600px) {
  .kf-contact-phone-wrap {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}
