﻿/* ===== REFERENCES ===== */
.references {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 150px 109px 5px;
}

.references-container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.teamplayer-header {
  display: flex;
  align-items: center;
  gap: 25px;
}

.references-container h3 {
  font-family: 'JosefinSans', sans-serif;
  font-size: 32px;
  line-height: 120%;
  color: var(--blue);
  text-align: center;
  font-weight: 400;
}

.references-subtitle {
  display: block;
  font-family: 'JosefinSans', sans-serif;
  font-size: 32px;
  color: var(--blue);
  text-align: center;
}

.references-cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}

.reference-card {
  position: relative;
  width: 400px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 36px;
  gap: 6px;
}

.reference-card::before,
.reference-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.reference-card::before {
  background-image: url('../assets/icons/Ellipse 02.png');
  opacity: 0.07;
  transition: opacity 0.5s ease;
}

.reference-card::after {
  background-image: url('../assets/icons/Ellipse 01.png');
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reference-card:hover::before {
  opacity: 0;
}

.reference-card:hover::after {
  opacity: 0.15;
}

.reference-card>* {
  position: relative;
  z-index: 1;
}

.ref-name {
  font-family: 'JosefinSans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  cursor: default;
}

.ref-project {
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
  cursor: default;
}

.project-name {
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}

.ref-quote {
  height: 120px;
  margin-top: 20px;
  font-family: 'JosefinSans', sans-serif;
  font-size: 18px;
  color: var(--white);
  line-height: 120%;
  font-weight: 400;
  cursor: default;
}

.ref-linkedin {
  font-family: 'JosefinSans', sans-serif;
  font-size: 16px;
  color: var(--blue);
  text-decoration: underline;
}