@charset "UTF-8";
.page-featured-projects {
  position: relative;
  min-height: 100vh;
  padding: 10vh 0;
  background: var(--color-back);
  overflow: hidden;
}

.featured-container {
  width: min(90%, 1400px);
  margin: 0 auto;
}

.featured-header {
  text-align: center;
  margin-bottom: 5rem;
}
.featured-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-type);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.featured-header h3 {
  font-family: var(--font-main);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-vivid-sky-blue);
  font-weight: 400;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.featured-header .featured-intro {
  color: var(--color-font-night);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.featured-card {
  position: relative;
  background: rgba(5, 60, 118, 0.3);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(194, 255, 100, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 0 2px var(--color-type) inset, 0 0 50px rgba(194, 255, 100, 0.4), 0 30px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--color-type);
}
.featured-card:hover .featured-image img {
  transform: scale(1.1);
}
.featured-card:hover .featured-image .featured-overlay {
  opacity: 0.7;
}

.featured-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-image .featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(39, 49, 84, 0.3) 50%, rgba(39, 49, 84, 0.8) 100%);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.featured-content .featured-logo {
  margin-bottom: 1rem;
}
.featured-content .featured-logo img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0.9);
}
.featured-content .featured-title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--color-font-night);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.featured-content .featured-description {
  color: var(--color-font-night);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  flex: 1;
}
.featured-content .featured-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.featured-content .featured-tech .tech-badge {
  padding: 0.4rem 0.8rem;
  background: rgba(194, 255, 100, 0.1);
  border: 1px solid rgba(194, 255, 100, 0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--color-type);
  font-weight: 500;
  transition: all 0.3s ease;
}
.featured-content .featured-tech .tech-badge:hover {
  background: rgba(194, 255, 100, 0.2);
  border-color: var(--color-type);
}
.featured-content .featured-tech .tech-badge.more {
  background: rgba(255, 0, 110, 0.1);
  border-color: rgba(255, 0, 110, 0.3);
  color: var(--color-focus);
}
.featured-content .featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-focus);
  color: var(--color-back);
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
}
.featured-content .featured-btn::after {
  content: "→";
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.featured-content .featured-btn:hover {
  background: transparent;
  border: 2px solid var(--color-focus);
  color: var(--color-focus);
  transform: translateX(5px);
}

.featured-cta {
  text-align: center;
}
.featured-cta .btn-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: var(--color-focus);
  color: var(--color-font-night);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.featured-cta .btn-all-projects::after {
  content: "→";
  font-size: 1.5rem;
}
.featured-cta .btn-all-projects:hover {
  background: transparent;
  border-color: var(--color-focus);
  color: var(--color-focus);
  transform: translateX(5px);
}

.no-projects {
  grid-column: 1/-1;
  text-align: center;
  color: var(--color-font-night);
  font-size: 1.25rem;
  padding: 4rem 0;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .featured-card .featured-image {
    height: 250px;
  }
  .featured-header {
    margin-bottom: 3rem;
  }
}/*# sourceMappingURL=featured-projects.css.map */