/* ================================================================
   GAS Service Cards — Stylesheet
   2×2 grid · background images · color overlay · image icons
================================================================ */

/* ── WRAPPER ─────────────────────────────────────────────────── */
.gsc-wrap {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
.gsc-wrap *, .gsc-wrap *::before, .gsc-wrap *::after {
  box-sizing: border-box;
}

/* ── GRID ────────────────────────────────────────────────────── */
.gsc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

/* ── CARD ────────────────────────────────────────────────────── */
.gsc-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  text-decoration: none;
  color: inherit;
  /* transition set inline by widget for user-controlled speed */
}

/* ── BACKGROUND IMAGE ────────────────────────────────────────── */
.gsc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  /* transform/transition set inline */
}

/* ── OVERLAY ─────────────────────────────────────────────────── */
.gsc-card-overlay {
  position: absolute;
  inset: 0;
  /* background set inline per-card */
}

/* ── CARD BODY ───────────────────────────────────────────────── */
.gsc-card-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px 22px;
}

/* ── ICON ────────────────────────────────────────────────────── */
.gsc-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  /* transition set inline via selectors */
}

.gsc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── TITLE ───────────────────────────────────────────────────── */
.gsc-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.4px;
  padding-top: 8px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ── FOOTER BAR ──────────────────────────────────────────────── */
.gsc-card-footer {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.32);
  padding: 13px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ── LINK TEXT ───────────────────────────────────────────────── */
.gsc-link-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s ease;
}

/* ── ARROW ───────────────────────────────────────────────────── */
.gsc-arrow-wrap {
  display: flex;
  align-items: center;
  /* transition set inline */
}

.gsc-arrow-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(255,255,255,0.88);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
  display: block;
}

/* ── HOVER DEFAULTS (overridden by inline selectors) ─────────── */
.gsc-card:hover .gsc-card-footer {
  background: rgba(0,0,0,0.48);
}
.gsc-card:hover .gsc-link-text {
  color: #ffffff;
}
.gsc-card:hover .gsc-arrow-icon {
  stroke: #ffffff;
}
