a {
  text-decoration: none;
}

.somnath-policy-container {
  max-width: 1280px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
}

/* Main Content */

.somnath-policy-main {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.somnath-policy-intro {
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 50px;
}

.somnath-policy-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.somnath-policy-date {
  font-size: 14px;
  /* color: #94a3b8; */
  margin-bottom: 20px;
  font-weight: 600;
background: var(--gredient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.somnath-policy-lead {
  font-size: 18px;
  color: #475569;
}

.somnath-policy-brand,
.somnath-policy-link,
.somnath-policy-link-bold {
  background: var(--gredient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.somnath-policy-link:hover,
.somnath-policy-link-bold:hover {
  text-decoration: underline;
}

.somnath-policy-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.somnath-policy-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.somnath-policy-indicator {
  width: 8px;
  height: 28px;
background: var(--gredient-bg);
  border-radius: 50px;
}

.somnath-policy-content {
  padding-left: 20px;
  color: #475569;
}

.somnath-policy-content p {
  margin-bottom: 18px;
}

.somnath-policy-list {
  padding-left: 20px;
}

.somnath-policy-list li {
  margin-bottom: 12px;
}

.somnath-policy-list li::marker {
  color: #f3613b;
}

/* Contact Box */

.somnath-policy-contact-box {
  margin-top: 25px;
  padding: 25px;
  background: #fff7f4;
  border: 1px solid #fed7c3;
  border-radius: 14px;
  display: inline-block;
}

.somnath-policy-team {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Sidebar */

.somnath-policy-sidebar {
  position: relative;
}

.somnath-policy-sticky {
  position: sticky;
  top: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.somnath-policy-sidebar-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* color: #94a3b8; */
  margin-bottom: 25px;
  font-weight: 700;
  background: var(--gredient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.somnath-policy-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.somnath-policy-nav a {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding-left: 14px;
  border-left: 2px solid transparent;
  transition: 0.3s;
}

.somnath-policy-nav a:hover {
background: var(--gredient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background: var(--gredient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */

@media(max-width:992px) {

  .somnath-policy-container {
    grid-template-columns: 1fr;
  }

  .somnath-policy-sidebar {
    display: none;
  }

  .somnath-policy-main {
    padding: 35px 25px;
  }

  .somnath-policy-title {
    font-size: 34px;
  }

  .somnath-policy-heading {
    font-size: 24px;
  }
}

@media(max-width:576px) {

  .somnath-policy-container {
    padding: 40px 15px;
  }

  .somnath-policy-title {
    font-size: 28px;
  }

  .somnath-policy-heading {
    font-size: 21px;
  }

  .somnath-policy-lead {
    font-size: 16px;
  }
}