.research-section {
  width: 100%;
  min-height: calc(100vh - 6rem);
  background-color: #191c40;
  color: #c3c0c0;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.research-section__heading {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #c3c0c0;
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-family: 'Montserrat', 'Raleway', sans-serif;
}

.research-section__tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.research-tag {
  background: transparent;
  border: 2px solid #c3c0c0;
  color: #c3c0c0;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.research-tag:hover {
  border-color: #b29758;
  color: #b29758;
}

.research-tag--active {
  background-color: #b29758;
  border-color: #b29758;
  color: #ffffff;
}

.research-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  list-style: none;
  margin: 0;
}

.research-section__item {
  width: 100%;
}

.research-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #404472;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(178, 151, 88, 0.2);
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(178, 151, 88, 0.3);
}

.research-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #5c5f7c;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .research-card__image {
    height: 250px;
  }
}

.research-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
}

.research-card:hover .research-card__overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.research-card__icon {
  height: 48px;
  width: 48px;
  margin: 0 0.5rem;
  border: 2px solid #c3c0c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3c0c0;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.research-card:hover .research-card__icon {
  opacity: 1;
}

.research-card__icon:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.research-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.research-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #c3c0c0;
  margin: 0 0 0.5rem 0;
}

.research-card__description {
  font-size: 0.875rem;
  color: #adb7be;
  margin: 0;
  line-height: 1.5;
}

.research-card__coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #b29758;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 10;
  white-space: nowrap;
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 640px) {
  .research-section__heading {
    font-size: 2rem;
  }

  .research-section__grid {
    grid-template-columns: 1fr;
  }

  .research-card__coming-soon {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
}



/*# sourceMappingURL=research.8def5f02f75a9e68dc8e.css.map*/