/* TLC Features */
.tlc-features {
  position: relative;
  overflow: hidden;
  background: var(--tlc-navy);
  padding: 6rem 1.5rem;
}
.tlc-features__boat {
  position: absolute;
  right: -10%;
  top: 50%;
  width: 55%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--tlc-ink) 40%, transparent);
  display: none;
}
.tlc-features__boat svg { width: 100%; }
@media (min-width: 1024px) { .tlc-features__boat { display: block; } }

.tlc-features__inner { position: relative; margin: 0 auto; max-width: 72rem; }
.tlc-features__head { max-width: 36rem; }
.tlc-features__heading {
  margin: 1rem 0 0;
  font-family: var(--tlc-font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tlc-ivory);
}

.tlc-features__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--tlc-brass) 15%, transparent);
  background: color-mix(in srgb, var(--tlc-brass) 10%, transparent);
}
@media (min-width: 640px) { .tlc-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tlc-features__grid { grid-template-columns: repeat(3, 1fr); } }

.tlc-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--tlc-navy);
  padding: 2rem;
}
.tlc-feature__icon {
  display: inline-block;
  width: fit-content;
  color: var(--tlc-brass);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tlc-feature:hover .tlc-feature__icon { transform: scale(1.2) rotate(-10deg); }
.tlc-feature__title {
  margin: 1.5rem 0 0;
  font-family: var(--tlc-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--tlc-ivory);
}
.tlc-feature__body { margin: 0.5rem 0 0; font-size: 1rem; line-height: 1.625; color: var(--tlc-fog); }
.tlc-feature__rule-wrap { margin-top: auto; padding-top: 2rem; }
.tlc-feature__rule {
  height: 1px;
  width: 0;
  background: linear-gradient(to right, color-mix(in srgb, var(--tlc-brass) 50%, transparent), color-mix(in srgb, var(--tlc-brass) 10%, transparent));
  transition: width 0.5s ease-out;
}
.tlc-feature:hover .tlc-feature__rule { width: 100%; }

.tlc-feature__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--tlc-ink);
  padding: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.tlc-feature__cta:hover { background: var(--tlc-navy-light); }
.tlc-feature__cta-label { font-family: var(--tlc-font-display); font-size: 1.125rem; font-weight: 500; color: var(--tlc-ivory); }
.tlc-feature__cta-arrow { color: var(--tlc-brass); display: inline-flex; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.tlc-feature__cta:hover .tlc-feature__cta-arrow { transform: translate(5px, -5px); }
