/* Research Hero Section */
.research-hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

/* Background */
.research-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.research-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.research-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(0, 142, 67, 0.8) 26.92%, rgba(0, 40, 19, 0) 100%);
}

/* Decorative Circles */
.decorative-circles {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-25%);
  display: none;
}

.circle-container {
  position: relative;
}

.circle-large {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.7);
  transform: translateX(-50%) translateY(40px);
}

.circle-small {
  position: absolute;
  bottom: 0;
  left: 96px;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.8);
}

/* Content */
.research-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* .content-container { */
  /* width: 100%;
  max-width: 1335px;
  margin: 0px 70px; */
/* } */

.content-wrapper {
  width: 100%;
  padding: 0;
}

/* Title Section */
.title-section {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
}

.star-icon {
  position: absolute;
  top: -8px;
  left: -32px;
  z-index: 2;
}

.star-icon img {
  width: 24px;
  height: 24px;
}

.research-title {
  color: white;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 8px;
}

/* Divider */
.divider {
  margin-bottom: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* Description */
.research-description {
  /* margin-bottom: 2rem; */
  text-align: left;
  color: white;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Button */
.button-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
}

.watch-btn {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  border: 2px solid white;
  background: transparent;
  padding: 0.5rem 1rem;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.watch-btn:hover {
  background: white;
  color: #15803d;
  transform: scale(1.05);
}

.watch-btn:active {
  transform: scale(0.95);
}


.btn-text {
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid white;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.watch-btn:hover .btn-icon {
  transform: rotate(90deg);
}

.btn-icon svg {
  height: 10px;
  width: 10px;
}

/* Hashtags */
.hashtags-container {
  /* text-align: left; */
}

.hashtags {
  color: white;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.hashtag {
  display: inline-block;
  margin-right: 0.5rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.hashtag:hover {
  color: #86efac;
}

/* Mobile Decorative Element */
.mobile-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 50%, transparent 100%);
}

/* Tablet and up */
@media (min-width: 768px) {
  .decorative-circles {
    display: block;
  }

  .mobile-accent {
    display: none;
  }

  .title-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .star-icon {
    position: static;
    margin-top: 4px;
  }

  .research-title {
    text-align: right;
    padding-left: 0;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .research-hero {
    height: 80vh;
  }

  .research-content {
    height: 100vh;
  }

  .circle-large {
    height: 398px;
    width: 398px;
  }

  .circle-small {
    left: 240px;
    top: 320px;
    height: 181px;
    width: 181px;
  }

  .title-section {
    margin-bottom: 2rem;
  }

  .research-title {
    text-align: justify;
    font-size: 1.125rem;
  }

  .divider {
    margin-bottom: 2rem;
  }

  .research-description {
    /* margin-bottom: 3rem; */
    text-align: justify;
    font-size: 0.875rem;
  }

  .button-container {
    margin-bottom: 4rem;
    justify-content: flex-end;
  }

  .watch-btn {
    padding: 0.5rem 1.5rem;
  }

  .btn-text {
    margin-right: 0.75rem;
    font-size: 1rem;
  }

  .btn-icon {
    height: 24px;
    width: 24px;
  }

  .btn-icon svg {
    height: 12px;
    width: 12px;
  }

  .hashtags-container {
    /* text-align: right; */
    margin-bottom: 2rem;
  }

  .hashtags {
    font-size: 1rem;
  }

  .hashtag {
    margin-right: 0.75rem;
  }
}