/* Start custom CSS for html, class: .elementor-element-e8378d8 *//* ===============================
   Legal Insights Page - Hero
================================ */

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-insights-hero {
  position: relative;
  min-height: 68vh;
  padding: 190px 0 105px;
  background: #071b33;
  overflow: hidden;
  font-family: inherit;
}

.sl-insights-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 23, 43, 0.98) 0%,
      rgba(7, 27, 51, 0.94) 52%,
      rgba(11, 79, 138, 0.62) 100%
    ),
    url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
}

.sl-insights-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.08), transparent 24%);
  pointer-events: none;
}

.sl-insights-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
}

.sl-insights-hero-content {
  max-width: 860px;
}

.sl-insights-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #dff6ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 26px;
}

.sl-insights-hero-content h1 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin: 0 0 24px;
}

.sl-insights-hero-content p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.9;
  max-width: 780px;
  margin: 0;
}

.sl-insights-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sl-insights-hero-primary,
.sl-insights-hero-secondary {
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: 0.25s ease;
}

.sl-insights-hero-primary {
  color: #071b33;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.sl-insights-hero-primary:hover {
  background: #dff6ff;
  transform: translateY(-2px);
}

.sl-insights-hero-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}

.sl-insights-hero-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* Panel */
.sl-insights-hero-panel {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 64px rgba(0,0,0,0.20);
  overflow: hidden;
}

.sl-insights-hero-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.30), transparent 68%);
  pointer-events: none;
}

.sl-insights-hero-panel span,
.sl-insights-hero-panel ul {
  position: relative;
  z-index: 2;
}

.sl-insights-hero-panel span {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
}

.sl-insights-hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.sl-insights-hero-panel li {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.11);
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-insights-hero {
    min-height: auto;
    padding: 165px 0 85px;
  }

  .sl-insights-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sl-insights-hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .sl-container {
    padding: 0 18px;
  }

  .sl-insights-hero {
    padding: 140px 0 66px;
  }

  .sl-insights-hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(6, 23, 43, 0.98) 0%,
        rgba(7, 27, 51, 0.94) 100%
      ),
      url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
  }

  .sl-insights-hero-content h1 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.8px;
  }

  .sl-insights-hero-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .sl-insights-hero-actions {
    display: grid;
  }

  .sl-insights-hero-primary,
  .sl-insights-hero-secondary {
    width: 100%;
  }

  .sl-insights-hero-panel {
    padding: 24px;
    border-radius: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-912dd06 *//* ===============================
   Legal Insights Page - Latest Posts
================================ */

.sl-latest-insights-section {
  position: relative;
  padding: 96px 0;
  background: #f5f9fc;
  overflow: hidden;
  font-family: inherit;
}

.sl-latest-insights-section::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top */
.sl-latest-insights-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: end;
  margin-bottom: 48px;
}

.sl-latest-insights-top span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0b4f8a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.sl-latest-insights-top h2 {
  color: #071b33;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0;
}

.sl-latest-insights-top p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

/* Grid */
.sl-latest-insights-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sl-latest-insight-card {
  position: relative;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5edf5;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.06);
  transition: 0.25s ease;
}

.sl-latest-insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 58px rgba(7, 27, 51, 0.12);
}

.sl-latest-insight-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #071b33;
}

.sl-latest-insight-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.sl-latest-insight-card:hover .sl-latest-insight-image img {
  transform: scale(1.06);
}

.sl-latest-insight-content {
  padding: 26px;
}

.sl-latest-insight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sl-latest-insight-meta a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0b4f8a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.sl-latest-insight-meta span {
  color: #6b7a8c;
  font-size: 13px;
  font-weight: 700;
}

.sl-latest-insight-content h3 {
  margin: 0 0 12px;
}

.sl-latest-insight-content h3 a {
  color: #071b33;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s ease;
}

.sl-latest-insight-content h3 a:hover {
  color: #0b4f8a;
}

.sl-latest-insight-content p {
  color: #5d6b7c;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.sl-latest-insight-read {
  display: inline-flex;
  align-items: center;
  color: #0b4f8a;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.sl-latest-insight-read:hover {
  color: #071b33;
}

/* Responsive */
@media (max-width: 1100px) {
  .sl-latest-insights-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sl-latest-insights-top p {
    max-width: 760px;
  }

  .sl-latest-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sl-latest-insights-section {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-latest-insights-top {
    margin-bottom: 34px;
  }

  .sl-latest-insights-top h2 {
    font-size: 30px;
  }

  .sl-latest-insights-top p {
    font-size: 15px;
  }

  .sl-latest-insights-grid {
    grid-template-columns: 1fr;
  }

  .sl-latest-insight-card {
    border-radius: 24px;
  }

  .sl-latest-insight-image {
    height: 220px;
  }

  .sl-latest-insight-content {
    padding: 24px;
  }

  .sl-latest-insight-content h3 a {
    font-size: 21px;
  }

  .sl-latest-insight-content p {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdc3b66 *//* ===============================
   Legal Insights Page - Newsletter CTA
================================ */

.sl-insights-newsletter-section {
  position: relative;
  padding: 96px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: inherit;
}

.sl-insights-newsletter-section::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.13), transparent 68%);
  pointer-events: none;
}

.sl-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-insights-newsletter-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 50px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(11, 79, 138, 0.94)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 76px rgba(7, 27, 51, 0.22);
  overflow: hidden;
}

.sl-insights-newsletter-box::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.34), transparent 68%);
  pointer-events: none;
}

.sl-insights-newsletter-box::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 68%);
  pointer-events: none;
}

.sl-insights-newsletter-content,
.sl-insights-newsletter-actions {
  position: relative;
  z-index: 2;
}

.sl-insights-newsletter-content span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #dff6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.sl-insights-newsletter-content h2 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1px;
  font-weight: 900;
  margin: 0 0 18px;
  max-width: 850px;
}

.sl-insights-newsletter-content p {
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.85;
  max-width: 850px;
  margin: 0;
}

.sl-insights-newsletter-actions {
  display: grid;
  gap: 14px;
  min-width: 230px;
}

.sl-insights-newsletter-primary,
.sl-insights-newsletter-secondary {
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.25s ease;
}

.sl-insights-newsletter-primary {
  background: #ffffff;
  color: #071b33;
}

.sl-insights-newsletter-primary:hover {
  background: #dff6ff;
  transform: translateY(-2px);
}

.sl-insights-newsletter-secondary {
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
}

.sl-insights-newsletter-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .sl-insights-newsletter-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sl-insights-newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .sl-insights-newsletter-section {
    padding: 64px 0;
  }

  .sl-container {
    padding: 0 18px;
  }

  .sl-insights-newsletter-box {
    padding: 28px;
    border-radius: 26px;
  }

  .sl-insights-newsletter-content h2 {
    font-size: 30px;
  }

  .sl-insights-newsletter-content p {
    font-size: 15px;
  }

  .sl-insights-newsletter-actions {
    display: grid;
    width: 100%;
  }

  .sl-insights-newsletter-primary,
  .sl-insights-newsletter-secondary {
    width: 100%;
  }
}/* End custom CSS */