/* ================= GOCOVER ME APP (COLOURFUL SAFE) ================= */

/* Section */
.employee-section {
  margin: 0 auto;
}

/* Main outer card */
.employee-card-wrap {
  max-width: 1240px;
  margin: 28px auto;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    #eef4ff 0%,
    #f8fbff 100%
  );
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

/* Inner container */
.employee-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Header row */
.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(0,0,0,0.18);
}

/* Text */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2563eb;
  background: linear-gradient(135deg, #e0e7ff, #ecfeff);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}

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

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

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

/* Cards */
.employee-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #e5e7eb;
  position: relative;
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Colour accent (SAFE – no layout impact) */
.employee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* Hover */
.employee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15,23,42,0.18);
}

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

/* Card text */
.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: #2563eb;
  text-decoration: none;
}

.employee-card a:hover {
  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;
}
