/* directory-search-section starts */
.ds-filter-bar {
  background-color: #5b007f; /* Primary Brand Purple */
  padding: 40px 0;
  color: #ffffff;
}

.ds-label {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  color: #ffffff;
}

/* Inputs & Selects */
.ds-input,
.ds-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 12px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border-radius: 2px;
  outline: none;
  height: 48px; /* Fixed height for alignment */
  transition: all 0.3s ease;
}

/* Customizing Select Arrow */
.ds-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px auto;
}

.ds-select option {
  color: #333; /* Dark text for dropdown options */
}

/* Input Group for Search Icon */
.ds-input-group {
  position: relative;
}

.ds-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1rem;
}

.ds-input-group .ds-input {
  padding-left: 40px; /* Space for icon */
}

.ds-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.ds-input:focus,
.ds-select:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

/* Search Button */
.ds-search-btn {
  width: 100%;
  height: 48px;
  background-color: #fff;
  border: 1px solid #ffffff;
  color: #5b007f;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ds-search-btn:hover {
  background-color: #000;
  color: #fff;
}

/* --- Results Grid (Bottom) --- */
.ds-results-area {
  padding: 80px 0;
  background-color: #fffbf5; /* Very subtle off-white texture background */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0h20v30c0 5.523 4.477 10 10 10H0z' fill='%23f7f2eb' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.ds-card {
  background-color: #ffffff;
  border: 1px solid #333333;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.ds-card:hover {
  transform: translateY(-5px);
}

/* Card Body */
.ds-card-body {
  padding: 25px;
  border-bottom: 1px solid #dcd0ff; /* Light purple separator line */
  flex-grow: 1;
}

.ds-firm-name {
  font-family: "DM Sans", sans-serif; /* Bold Sans-serif for names */
  font-size: 1.1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 10px;
  min-height: 3em; /* Ensure alignment for long names */
}

.ds-location {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.ds-location i {
  margin-right: 5px;
  color: #333;
}

/* Tags */
.ds-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ds-tag {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  border-radius: 2px;
}

.ds-tag-more {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-family: "DM Sans", sans-serif;
  border-radius: 2px;
}

/* Card Footer */
.ds-card-footer {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ds-stats {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
}

.ds-stats strong {
  color: #131313;
  font-weight: 700;
}

.ds-view-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ds-view-btn:hover {
  background-color: #75159b;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .ds-firm-name {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .ds-filter-bar {
    padding: 30px 0;
  }

  .ds-results-area {
    padding: 50px 0;
  }

  .ds-search-btn {
    margin-top: 10px;
  }
}

.directory-item[style*="display: none"] {
  display: none !important;
}
/* directory-search-section ends */

/* articles-section-starts */
.articles-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fffaf4 0%, #fdfcff 50%, #f4f0ff 100%);
}

.articles-main-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 20px;
}

.articles-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.article-filter-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 15px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.article-filter-wrapper::-webkit-scrollbar {
  display: none;
}

.article-filter {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  min-width: fit-content;
}

.af-item {
  padding: 8px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  color: #333333;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.af-item:hover {
  background-color: #efefef;
  border-color: #d0d0d0;
}

.af-item.active {
  background-color: #5b007f;
  color: #ffffff;
  border-color: #5b007f;
}

.article-card {
  background-color: transparent;
  border: none;
  height: 100%;
}

.ac-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ac-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .ac-img-wrapper img {
  transform: scale(1.05);
}

.ac-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.4;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.article-card:hover .ac-title {
  color: #5b007f;
}

.ac-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ac-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.ac-meta-item {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ac-meta-item span {
  color: #999999;
}

.meta-dot {
  width: 6px;
  height: 6px;
  background-color: #5b007f;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 991px) {
  .articles-main-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .articles-section {
    padding: 60px 0;
  }

  .articles-main-heading {
    font-size: 2.2rem;
  }

  .article-item[style*="display: none"] {
    display: none !important;
  }
}
/* articles-section-ends */

/* article-detail-section starts */
.article-detail-section {
  padding: 100px 0;
  /* Consistent light gradient background */
  background: linear-gradient(135deg, #fffaf4 0%, #fdfcff 50%, #f4f0ff 100%);
  overflow: hidden;
}

/* --- Left Column: Main Content --- */
.ad-heading {
  font-family:
    "DM Sans", sans-serif; /* Per screenshot, uses DM Sans for headings */
  font-size: 1.8rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.3;
  margin-bottom: 20px;
}

.ad-paragraph {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 50px;
}

/* Block with text and side image */
.ad-block-with-image {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.ad-text-content {
  flex: 1;
}

.ad-image-wrapper {
  position: relative;
  width: 250px;
  height: 180px;
  flex-shrink: 0;
}

.ad-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3px 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #131313;
  letter-spacing: 0.5px;
}

/* --- CTA Banner --- */
.ad-cta-banner {
  background-color: #5b007f;
  padding: 30px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

/* The vector graphic in the CTA */
.ad-cta-vector {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.ad-cta-vector svg {
  width: 300px;
  height: auto;
}

.ad-cta-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  z-index: 2;
}

.ad-cta-btns {
  display: flex;
  gap: 15px;
  z-index: 2;
}

.ad-btn-white,
.ad-btn-outline {
  padding: 8px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ad-btn-white {
  background-color: #ffffff;
  color: #5b007f;
  border: 1px solid #ffffff;
}
.ad-btn-white:hover {
  background-color: transparent;
  color: #ffffff;
}

.ad-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.ad-btn-outline:hover {
  background-color: #ffffff;
  color: #5b007f;
}

/* --- Right Column: Sidebar --- */
.article-sidebar-main {
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.sidebar-article {
  margin-bottom: 30px;
}

.sa-img {
  width: 100%;
  height: 180px;
  margin-bottom: 15px;
  overflow: hidden;
}

.sa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sa-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #131313;
  line-height: 1.4;
  margin-bottom: 8px;
}

.sa-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .article-sidebar-main {
    border-left: none;
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .article-detail-section {
    padding: 60px 0;
  }

  .ad-heading {
    font-size: 1.6rem;
  }

  .ad-block-with-image {
    flex-direction: column; /* Stack image on top */
  }

  .ad-image-wrapper {
    width: 100%;
    height: auto;
    order: -1; /* Move image to top */
    margin-bottom: 20px;
  }
}
/* article-detail-section ends */

/* event-gallery-section starts */
.event-gallery-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom right,
    #fdfcff 0%,
    #f5f0ff 80%,
    #f5f0ff 100%
  );
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #c82424; /* A reddish color from the design */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.gallery-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #131313;
}

.gallery-grid-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 0.7;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* --- Lightbox / Modal Styles --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 19, 19, 0.9);
  z-index: 2000;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #131313;
  transition: background-color 0.3s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #ffffff;
}

.lightbox-close {
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: -25px;
}

.lightbox-next {
  right: -25px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .event-gallery-section {
    padding: 80px 0;
  }
  .gallery-title {
    font-size: 2.5rem;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}
/* event-gallery-section ends */

/* Scroll to Top Button Styling starts */
.scroll-to-top {
  position: fixed;
  color: #fff;
  bottom: 30px;
  right: 0px;
  width: 55px;
  height: 55px;
  background-color: #131313;
  border: none;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;

  /* Logic for showing/hiding the button */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px); /* Start slightly lower */
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

/* The class that JavaScript will add to show the button */
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #333; /* Slightly lighter on hover */
}

.scroll-to-top svg {
  width: 28px;
  height: 28px;
  fill: #ffffff; /* White arrow */
}

/* Scroll to Top Button Styling ends */

/* ****************************Latest CSS***************************  */

/* nomination-process-section starts */

.nomination-process-section {
  padding: 100px 0;
  background: radial-gradient(
    circle at 50% 0%,
    #fff5f5 0%,
    #fdfcff 40%,
    #ffffff 100%
  );
  overflow: hidden;
  position: relative;
}

.np-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 15px;
}

.np-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.np-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.np-icon-box {
  width: 80px;
  height: 80px;
  background-color: #ff6d01;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(117, 70, 255, 0.2);
  transition: transform 0.3s ease;
}

.np-icon-box:hover {
  transform: translateY(-5px);
}

.np-icon-box i {
  color: #ffffff;
  font-size: 1.8rem;
}

.np-step-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 15px;
}

.np-step-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.np-arrow-container {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 1;
}

.np-arrow {
  position: absolute;
  width: 25%;
  height: 60px;
  overflow: visible;
}

.np-arrow-1 {
  left: 20%;
  top: 10px;
}

.np-arrow-2 {
  left: 53%;
  top: 10px;
}

@media (max-width: 991px) {
  .np-heading {
    font-size: 2.5rem;
  }

  .np-arrow-container {
    display: none;
  }
}

@media (max-width: 767px) {
  .nomination-process-section {
    padding: 60px 0;
  }

  .np-heading {
    font-size: 2.2rem;
  }

  .np-card {
    padding: 0;
    margin-bottom: 20px;
  }

  .np-icon-box {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
}

/* nomination-process-section ends */

/* celebrating-excellence-section starts */
.celebrating-excellence-section {
  padding: 100px 0;
  background: radial-gradient(
    circle at 50% -10%,
    #fff0f0 0%,
    #fcfaff 40%,
    #f4f0ff 100%
  );
  overflow: hidden;
}

.ce-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.ce-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 20px;
}

.ce-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.ce-swiper {
  padding-bottom: 50px !important;
  padding-top: 20px !important;
}

.ce-card {
  position: relative;
  width: 100%;
  transition: transform 0.3s ease;
}

.ce-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: visible;
}

.ce-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.ce-btn-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #5b007f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 10;
  border: 5px solid #ffffff;
  box-shadow: 0 5px 15px rgba(117, 70, 255, 0.2);

  transition: all 0.3s ease;
}

.ce-btn-icon i {
  color: #ffffff;
  font-size: 1.2rem;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.ce-card:hover .ce-btn-icon {
  background-color: #131313;
  transform: scale(1.1);
}

.ce-card:hover .ce-btn-icon i {
  transform: rotate(0deg);
}

.page-breaker-para {
  /*max-width: 900px;*/
  font-size: 1.2rem;
  color: #fff;
}

@media (max-width: 991px) {
  .ce-heading {
    font-size: 2.5rem;
  }
  .ce-img-wrapper {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .celebrating-excellence-section {
    padding: 60px 0;
  }
  .ce-heading {
    font-size: 2.2rem;
  }
  .ce-btn-icon {
    width: 50px;
    height: 50px;
    bottom: -20px;
    right: 15px;
  }
  .ce-btn-icon i {
    font-size: 1rem;
  }
}

/* celebrating-excellence-section ends */

/* all-interviews-section starts */
.all-interviews-section {
  padding: 60px 0 100px 0;
  background: radial-gradient(
    circle at 50% 0%,
    #fff5f5 0%,
    #fdfcff 40%,
    #ffffff 100%
  );
}

.ai-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 15px;
}

.ai-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

.ai-tabs-container {
  margin-bottom: 50px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
  padding: 10px 0 20px 0;
}

.ai-tabs-container::-webkit-scrollbar {
  display: none;
}

.ai-tabs {
  display: inline-flex;
  gap: 15px;
  flex-wrap: nowrap;
}

.ai-tab-btn {
  padding: 12px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: #5b007f;
  border: 1px solid rgb(91 0 127);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ai-tab-btn:hover {
  border-color: #ff6d01;
  background-color: rgba(117, 70, 255, 0.05);
  color: #ff6d01;
}

.ai-tab-btn.active {
  background-color: #5b007f;
  color: #ffffff;
  border-color: #5b007f;
  box-shadow: 0 4px 10px rgba(117, 70, 255, 0.2);
}

.ai-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ai-item {
  margin-bottom: 40px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 2px;
}

.ai-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ai-item:hover .ai-img-wrapper img {
  transform: scale(1.05);
}

.ai-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 10px;
}

.ai-date {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff6d01;
  margin-bottom: 10px;
  display: block;
}

.ai-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ai-author {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.ai-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 95%;
}

.ai-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.ai-btn:hover {
  background-color: #75159b;
}

.ai-separator {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .ai-tabs-container {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ai-tabs {
    display: flex;
  }

  .ai-tab-btn {
    font-size: 0.7rem;
    padding: 10px 18px;
  }
}

@media (max-width: 767px) {
  .ai-heading {
    font-size: 2.2rem;
  }

  .ai-img-wrapper {
    height: 200px;
  }

  .ai-title {
    font-size: 1.3rem;
  }

  .ai-desc {
    max-width: 100%;
  }
}

/* all-interviews-section ends */

/* edition-section starts */
.edition-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffbfb 0%, #f9f7ff 100%);
}

.ed-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 10px;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.ed-subheading {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  color: #555555;
  line-height: 1.5;
}

.ed-btn {
  background-color: #5b007f;
  color: #ffffff;
  border: none;
  padding: 10px 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 2px;
  margin-top: 5px;
}

.ed-btn:hover {
  background-color: #75159b;
}

.ed-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #131313;
  margin-bottom: 8px;
}

.ed-meta p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}

.ed-meta .role {
  color: #666;
  margin-bottom: 15px;
}

.ed-excerpt-box {
  border-left: 2px dotted #5b007f;
  padding-left: 15px;
  margin-bottom: 15px;
}

.ed-excerpt-box p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.ed-card-horizontal {
  background-color: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.ed-img-wrapper-h {
  width: 100%;
  height: 100%;
}

.ed-img-wrapper-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ed-content-h {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.ed-card-vertical {
  background-color: transparent;
  margin-bottom: 50px;
}

.ed-img-wrapper-v {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  overflow: hidden;
}

.ed-img-wrapper-v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ed-card-vertical:hover .ed-img-wrapper-v img {
  transform: scale(1.03);
}

.ed-content-v {
  padding: 0;
}

@media (max-width: 991px) {
  .ed-card-horizontal {
    height: auto;
  }

  .ed-img-wrapper-h {
    height: 250px;
  }

  .ed-list-sidebar {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .ed-card-vertical {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .edition-section {
    padding: 60px 0;
  }

  .ed-heading {
    font-size: 2rem;
  }

  .ed-card-horizontal .row {
    flex-direction: column;
  }

  .ed-img-wrapper-h {
    height: 220px;
  }

  .ed-content-h {
    padding: 20px;
  }

  .ed-list-sidebar {
    grid-template-columns: 1fr;
  }
}

/* edition-section ends */

