/* Life Travels Our Team Widget */
.ltk-team {
  --ltk-team-accent: #0ea5e9;
  --ltk-team-accent-dark: #0284c7;
  --ltk-team-ink: #071326;
  --ltk-team-text: #526176;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--ltk-team-text);
  isolation: isolate;
}
.ltk-team,
.ltk-team * { box-sizing: border-box; }
.ltk-team a { text-decoration: none; }
.ltk-team__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ltk-team__head {
  margin-left: 0;
  margin-right: 0;
}
.ltk-team--center .ltk-team__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ltk-team--right .ltk-team__head {
  margin-left: auto;
  text-align: right;
}
.ltk-team__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 18px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--ltk-team-accent);
  border: 1px solid rgba(14,165,233,.16);
  box-shadow: 0 18px 42px rgba(7,19,38,.08), inset 0 1px 0 rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ltk-team__badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}
.ltk-team__title {
  margin: 0;
  color: var(--ltk-team-ink);
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.ltk-team__title span { color: var(--ltk-team-accent); }
.ltk-team__description {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--ltk-team-text);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}
.ltk-team--center .ltk-team__description { margin-left: auto; margin-right: auto; }
.ltk-team--right .ltk-team__description { margin-left: auto; }

.ltk-team__grid {
  --ltk-team-columns: 3;
  display: grid;
  grid-template-columns: repeat(var(--ltk-team-columns), minmax(0, 1fr));
  gap: 28px;
}
.ltk-team-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(14,165,233,.14);
  box-shadow: 0 30px 80px rgba(8,64,101,.12), inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.ltk-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(14,165,233,.28), rgba(255,255,255,.62));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.ltk-team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,.32);
  box-shadow: 0 38px 96px rgba(8,64,101,.16), inset 0 1px 0 rgba(255,255,255,.92);
}
.ltk-team-card__image {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 24px;
  background: rgba(14,165,233,.08);
  isolation: isolate;
}
.ltk-team-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,19,38,.10);
  z-index: 1;
  pointer-events: none;
}
.ltk-team-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .5s ease;
}
.ltk-team-card:hover .ltk-team-card__image img { transform: scale(1.07); }
.ltk-team-card__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 32px);
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ltk-team-accent);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: 0 14px 32px rgba(7,19,38,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ltk-team-card__tag--static {
  position: relative;
  left: auto;
  bottom: auto;
  margin-bottom: 16px;
}
.ltk-team-card__body {
  position: relative;
  z-index: 2;
  padding: 22px 4px 0;
}
.ltk-team-card__name {
  margin: 0;
  color: var(--ltk-team-ink);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.035em;
}
.ltk-team-card__role {
  margin-top: 8px;
  color: var(--ltk-team-accent);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ltk-team-card__bio {
  margin: 16px 0 0;
  color: var(--ltk-team-text);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}
.ltk-team-card__contact {
  display: grid;
  gap: 8px;
  margin-top: 17px;
}
.ltk-team-card__contact a {
  color: var(--ltk-team-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  overflow-wrap: anywhere;
  transition: color .22s ease;
}
.ltk-team-card__contact a:hover { color: var(--ltk-team-accent); }
.ltk-team-card__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.ltk-team-card__social {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,165,233,.10);
  color: var(--ltk-team-accent);
  border: 1px solid rgba(14,165,233,.16);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.ltk-team-card__social:hover {
  transform: translateY(-3px);
  background: var(--ltk-team-accent);
  color: #fff;
  border-color: var(--ltk-team-accent);
}
.ltk-team-card__button {
  width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--ltk-team-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--ltk-team-accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(14,165,233,.22), inset 0 1px 0 rgba(255,255,255,.22);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ltk-team-card__button:hover {
  transform: translateY(-2px);
  background: var(--ltk-team-accent-dark);
  border-color: var(--ltk-team-accent-dark);
  color: #fff;
  box-shadow: 0 20px 40px rgba(14,165,233,.26), inset 0 1px 0 rgba(255,255,255,.24);
}
.ltk-team-card__button span {
  display: inline-flex;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .ltk-team__grid { --ltk-team-columns: 2; }
}
@media (max-width: 767px) {
  .ltk-team__grid { --ltk-team-columns: 1; }
  .ltk-team__head,
  .ltk-team--right .ltk-team__head {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .ltk-team__description,
  .ltk-team--center .ltk-team__description,
  .ltk-team--right .ltk-team__description {
    margin-left: 0;
    margin-right: 0;
  }
  .ltk-team__title { font-size: clamp(34px, 12vw, 52px); }
  .ltk-team-card { border-radius: 24px; }
  .ltk-team-card__image {
    height: 255px;
    border-radius: 20px;
  }
}
@media (max-width: 420px) {
  .ltk-team__badge {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 11px;
  }
  .ltk-team-card__image { height: 230px; }
  .ltk-team-card__name { font-size: 23px; }
  .ltk-team-card__social { border-radius: 13px; }
}


/* v19: Video reference dark interactive team cards */
.ltk-team {
  background: #02051a;
  overflow: hidden;
}
.ltk-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(29,78,216,.18), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(14,165,233,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.ltk-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .08;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.ltk-team__inner {
  position: relative;
  z-index: 1;
}
.ltk-team__badge {
  background: rgba(255,255,255,.08);
  color: var(--ltk-team-accent);
  border-color: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.ltk-team__title {
  color: #ffffff;
}
.ltk-team__description {
  color: rgba(255,255,255,.70);
}
.ltk-team__grid {
  align-items: stretch;
}
.ltk-team-card {
  --ltk-team-reveal-bg: rgba(29,39,184,.92);
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: rgba(10, 16, 52, .72);
  border: 1px solid rgba(85, 118, 255, .18);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  isolation: isolate;
}
.ltk-team-card::before {
  z-index: 4;
  background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(70,100,255,.20), rgba(255,255,255,.06));
  opacity: .75;
}
.ltk-team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--ltk-team-reveal-bg), rgba(29,39,184,.76)),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .34s ease, transform .34s ease;
  z-index: 1;
  pointer-events: none;
}
.ltk-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(0,0,0,.34), 0 0 0 1px rgba(82,115,255,.18);
}
.ltk-team-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.ltk-team-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  border-radius: inherit;
  z-index: 0;
  background: #070b25;
  transition: opacity .32s ease, transform .42s ease;
}
.ltk-team-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(2,5,26,.82) 100%);
  pointer-events: none;
}
.ltk-team-card__image::after {
  background: radial-gradient(circle at 50% 70%, rgba(47,82,255,.36), rgba(2,5,26,.18) 52%, rgba(2,5,26,.32) 100%);
  z-index: 1;
}
.ltk-team-card:hover .ltk-team-card__image {
  opacity: 0;
  transform: scale(1.08);
}
.ltk-team-card__image img {
  object-position: center top;
}
.ltk-team-card__tag {
  top: 18px;
  left: 18px;
  bottom: auto;
  max-width: calc(100% - 36px);
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
  font-size: 10px;
  letter-spacing: .10em;
}
.ltk-team-card:hover .ltk-team-card__tag {
  background: rgba(255,255,255,.12);
  color: #ffffff;
}
.ltk-team-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  min-height: 132px;
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: inset .34s ease, justify-content .34s ease, padding .34s ease;
}
.ltk-team-card:hover .ltk-team-card__body {
  inset: 0;
  justify-content: flex-start;
  padding: 28px 24px 24px;
}
.ltk-team-card__name {
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.04em;
}
.ltk-team-card__role {
  margin-top: 7px;
  color: rgba(150,170,255,.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.ltk-team-card__bio {
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.6;
  transition: max-height .36s ease, margin .32s ease, opacity .3s ease, transform .32s ease;
}
.ltk-team-card:hover .ltk-team-card__bio {
  max-height: 220px;
  margin-top: auto;
  opacity: 1;
  transform: translateY(0);
}
.ltk-team-card__contact,
.ltk-team-card__socials,
.ltk-team-card__button {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s ease, max-height .28s ease, margin .28s ease, transform .28s ease;
}
.ltk-team-card:hover .ltk-team-card__contact,
.ltk-team-card:hover .ltk-team-card__socials,
.ltk-team-card:hover .ltk-team-card__button {
  opacity: 1;
  max-height: 160px;
  margin-top: 16px;
  pointer-events: auto;
  transform: translateY(0);
}
.ltk-team-card__contact a {
  color: rgba(255,255,255,.78);
}
.ltk-team-card__contact a:hover {
  color: #ffffff;
}
.ltk-team-card__social {
  background: rgba(255,255,255,.10);
  color: #ffffff;
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.ltk-team-card__social:hover {
  background: #ffffff;
  color: #1d27b8;
  border-color: #ffffff;
}
.ltk-team-card__button {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.ltk-team-card__button:hover {
  background: #ffffff;
  color: #1d27b8;
  border-color: #ffffff;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .ltk-team-card {
    min-height: 390px;
  }
}
@media (max-width: 767px) {
  .ltk-team__grid {
    gap: 22px;
  }
  .ltk-team-card {
    min-height: 380px;
    border-radius: 18px;
  }
  .ltk-team-card__image {
    border-radius: inherit;
  }
  .ltk-team-card__body {
    padding: 22px;
  }
  .ltk-team-card:hover .ltk-team-card__body {
    padding: 24px 22px 22px;
  }
  .ltk-team-card__name {
    font-size: 24px;
  }
}


/* v20: Elementor responsive-control compatibility fixes */
.ltk-team {
  /* no fixed mobile padding here; Elementor responsive padding control now controls it */
}

.elementor-widget-life-travels-team .ltk-team {
  box-sizing: border-box;
}


/* v44: Rich text bio editor support for Our Team widget */
.ltk-team-card__bio p {
  margin: 0 0 8px !important;
}

.ltk-team-card__bio p:last-child {
  margin-bottom: 0 !important;
}

.ltk-team-card__bio a {
  color: var(--ltk-team-accent, #0ea5e9) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ltk-team-card__bio ul,
.ltk-team-card__bio ol {
  margin: 8px 0 0 18px !important;
  padding: 0 !important;
}

.ltk-team-card__bio li {
  margin: 0 0 5px !important;
}
