/*
------------------------------------------------
Featured Work
------------------------------------------------
*/

.hs-featured-work {
  padding: 100px 0;
  background: #111;
}

.hs-featured-work-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}

.hs-featured-work-intro {
  font-size: 1.15rem;
  margin-top: 25px;
}

.hs-featured-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hs-featured-project-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hs-featured-project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--hs-gold), rgba(75, 0, 0, 0.5));
}

.hs-featured-project-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hs-featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-featured-project-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 30px;
}

.hs-featured-project-content h3 {
  margin-bottom: 20px;
}

.hs-featured-project-description {
  margin-bottom: 25px;
}

.hs-featured-project-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hs-featured-project-features li {
  position: relative;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.02);
}

.hs-featured-project-footer {
  margin-top: auto;
  padding-top: 30px;
}

.hs-project-link {
  color: var(--hs-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hs-project-link:hover,
.hs-project-link:focus {
  color: #ffffff;
}

/*
------------------------------------------------
Tablet
------------------------------------------------
*/

@media (max-width: 1100px) {
  .hs-featured-work-grid {
    grid-template-columns: 1fr;
  }
}
