/* Web Checking — airline check-in portal cards */

.page-hero--webcheck {
  background: linear-gradient(135deg, #032c7c 0%, #022468 45%, #1f5c10 100%);
}

.webcheck-lead {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  color: #5c6b7a;
  font-size: 15px;
  line-height: 1.6;
}

.webcheck-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.webcheck-filter {
  border: 1px solid rgba(3, 44, 124, 0.15);
  background: #fff;
  color: #032c7c;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.webcheck-filter.is-active,
.webcheck-filter:hover {
  background: linear-gradient(135deg, #032c7c, #2c7d17);
  color: #fff;
  border-color: transparent;
}

.webcheck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.webcheck-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(3, 44, 124, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(1, 24, 72, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.webcheck-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 125, 23, 0.35);
  box-shadow: 0 14px 32px rgba(1, 24, 72, 0.1);
}

.webcheck-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.webcheck-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: #f7faff;
  border: 1px solid rgba(3, 44, 124, 0.08);
  padding: 6px;
}

.webcheck-logo--badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, #032c7c, #2c7d17);
  padding: 0;
}

.webcheck-name {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #011848;
}

.webcheck-meta {
  margin: 2px 0 0;
  font-size: 12px;
  color: #5c6b7a;
}

.webcheck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #032c7c 0%, #2c7d17 100%);
  box-shadow: 0 8px 18px rgba(3, 44, 124, 0.22);
  transition: transform 160ms ease, filter 160ms ease;
}

.webcheck-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.webcheck-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(3, 44, 124, 0.05);
  border: 1px solid rgba(3, 44, 124, 0.1);
  color: #334155;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.webcheck-note a {
  color: #032c7c;
  font-weight: 700;
}

@media (max-width: 560px) {
  .webcheck-grid {
    grid-template-columns: 1fr;
  }
}
