/* General tools list styling */
  ul.tools-list li {
    margin-bottom: 8px;
  }

  /* Generic section styling */
  section {
    margin: 40px auto 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    max-width: 100%;
    text-align: center;
  }

  section h2 {
    color: #533DEA;
    font-weight: bold;
    margin-bottom: 15px;
  }

  section ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    line-height: 1.8;
  }

  section ul li a {
    color: #533DEA;
    text-decoration: none;
    font-weight: 500;
  }

  section ul li a:hover {
    text-decoration: underline;
  }

  /* FAQ-specific section */
  section[aria-label^="Frequently Asked Questions"] {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto 20px;
    max-width: 100%;
    text-align: left;
  }

  section[aria-label^="Frequently Asked Questions"] h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }

  /* FAQ accordion details */
  details {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border-left: 4px solid #533DEA;
    transition: all 0.3s ease;
  }

  summary {
    font-weight: 600;
    cursor: pointer;
    color: #533DEA;
    margin-bottom: 10px;
  }

  summary:hover {
    text-decoration: underline;
  }


  section.admission-guide h3 {
    color: #533DEA;
  }

  section.admission-guide .inner {
    display: inline-block;
    text-align: left;
  }

  section.admission-guide ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.8;
  }

  section.admission-guide ul li a {
    color: #533DEA;
    font-weight: bold;
    text-decoration: none;
  }

  section.admission-guide ul li a:hover {
    text-decoration: underline;
  }

  section.faq h3 {
    color: #533DEA;
    text-align: center;
  }

  section.faq details {
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border-left: 4px solid #533DEA;
    transition: all 0.3s ease;
  }

  section.faq summary {
    font-weight: 600;
    cursor: pointer;
    color: #533DEA;
  }

  section.faq summary:hover {
    text-decoration: underline;
  }

/* Container for the sponsored block */
.related-posts-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin: 2rem 0;               /* increased margin */
  padding: 1.5rem 2rem;         /* increased padding */
  background: #fff;
  border-left: 5px solid #533DEA; /* thicker accent line */
  border-radius: 10px;          /* slightly larger rounding */
  box-shadow: 0 3px 8px rgba(83, 61, 234, 0.15); /* stronger shadow */
  font-family: 'Open Sans', sans-serif;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-posts-wrapper:hover {
  box-shadow: 0 8px 25px rgba(83, 61, 234, 0.3);
  border-color: #3b2eda;
}

/* Heading style */
.related-posts-wrapper h4 {
  font-size: 15px;              /* larger font size */
  margin-bottom: 1rem;          /* more space below */
  color: #533DEA;
  font-weight: 700;
  border-bottom: 3px solid #533DEA; /* thicker underline */
  padding-bottom: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Smaller font size on small screens */
@media (max-width: 480px) {
  .related-posts-wrapper h4 {
    font-size: 14px;
  }
}

/* Wrapper for the cards inside */
.pp-post-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;                 /* increased gap */
}

/* Each sponsored item card */
.news-card-one {
  background: #f9f9ff;
  padding: 1rem 1.5rem;        /* increased padding */
  border-radius: 10px;         /* bigger rounding */
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;             /* bigger font size */
  line-height: 1.5;
}

.news-card-one:hover {
  background-color: #e6e9ff;
  border-color: #533DEA;
  box-shadow: 0 6px 18px rgba(83, 61, 234, 0.25);
}

/* List styling inside each card */
.news-card-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove margin if multiple list items present */
.news-card-info li {
  margin-bottom: 0;
}

/* Link styling */
.news-card-info a {
  font-weight: 600;
  color: #3b2eda;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: color 0.3s ease;  /* Removed transform from transition */
}

.news-card-info a:hover {
  color: #1a0dab;
  text-decoration: underline;
  transform: none;  /* No translate on hover */
}

.news-card-info a:active {
  transform: none;  /* No transform on click */
}
