/* ================= GOCOVER ME APP — Green Theme ================= */

.employee-section {
  margin: 0 auto;
}

.employee-card-wrap {
  max-width: 1240px;
  margin: 28px auto;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 50%, #ffffff 100%);
  box-shadow: 0 30px 70px rgba(7,181,168,0.1);
  border: 1px solid rgba(153,246,228,0.5);
}

.employee-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.employee-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(7,181,168,0.15);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #047857;
  background: linear-gradient(135deg, #ccfbf1, #dcfce7);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.section-tag.green {
  color: #047857;
  background: linear-gradient(135deg, #ccfbf1, #dcfce7);
}

.section-title {
  font-size: 30px;
  margin: 0 0 6px;
  color: #0f172a;
}

.section-sub {
  font-size: 15px;
  color: #475569;
  max-width: 760px;
  line-height: 1.6;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.employee-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1.5px solid #e5e7eb;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  transition: all 0.3s ease;
}

.employee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.employee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,181,168,0.1);
  border-color: transparent;
}
.employee-card:hover::before {
  opacity: 1;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #07b5a8, #22c55e);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.employee-card h3 {
  font-size: 18px;
  margin: 6px 0 6px;
  color: #0f172a;
}

.employee-card p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
  line-height: 1.5;
}

.employee-card a {
  font-size: 14px;
  font-weight: 700;
  color: #07b5a8;
  text-decoration: none;
  transition: color 0.2s;
}

.employee-card a:hover {
  color: #059669;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .employee-head {
    flex-direction: column;
  }
  .employee-grid {
    grid-template-columns: 1fr;
  }
}

.employee-section,
.employee-card,
.employee-card a {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
