/* Fırsatlar / opportunities */
.firsat-page {
  --fp-primary: #2563eb;
  --fp-primary-dark: #1d4ed8;
  --fp-bg: #f1f5f9;
  --fp-card: #fff;
  --fp-border: #e2e8f0;
  --fp-text: #0f172a;
  --fp-muted: #64748b;
  --fp-radius: 16px;
  --fp-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  background: var(--fp-bg);
  min-height: 50vh;
  font-family: var(--site-font-sans, "Poppins", system-ui, sans-serif);
}
.firsat-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 48%, #172554 100%) !important;
  color: #fff !important;
  padding: 2.75rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}
.firsat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' fill-opacity='.06' d='M0 0h32v32H0zm32 32h32v32H32z'/%3E%3C/svg%3E");
  pointer-events: none;
}
.firsat-hero .container {
  position: relative;
  z-index: 1;
}
.firsat-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  color: #fff !important;
}
.firsat-hero .hero-desc {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0 0 1rem;
  max-width: 640px;
  line-height: 1.55;
}
.firsat-hero .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.firsat-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
}
.firsat-hero .breadcrumb-item a:hover {
  color: #fff !important;
}
.firsat-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.82) !important;
}
.firsat-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}
.firsat-card {
  background: var(--fp-card);
  border-radius: var(--fp-radius);
  overflow: hidden;
  box-shadow: var(--fp-shadow);
  border: 1px solid var(--fp-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.firsat-card:hover {
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.22);
  transform: translateY(-3px);
}
.firsat-card-image {
  height: 220px;
  background: linear-gradient(145deg, #cbd5e1, #94a3b8);
  position: relative;
  overflow: hidden;
}
.firsat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.firsat-card:hover .firsat-card-image img {
  transform: scale(1.06);
}
.firsat-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
.firsat-card-body {
  padding: 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.firsat-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fp-text);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.firsat-card-subtitle {
  font-size: 0.95rem;
  color: var(--fp-primary);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.firsat-card-desc {
  font-size: 0.9rem;
  color: var(--fp-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.firsat-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3);
}
.firsat-card-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.38);
}
.firsat-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--fp-card);
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-border);
  box-shadow: var(--fp-shadow);
}
.firsat-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: var(--fp-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-muted);
  font-size: 2rem;
}
.firsat-empty h3 {
  font-size: 1.25rem;
  color: var(--fp-text);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.firsat-empty p {
  color: var(--fp-muted);
  margin: 0 0 1rem;
}
.firsat-cta {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  color: #fff;
  border-radius: var(--fp-radius);
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}
.firsat-cta h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}
.firsat-cta p {
  margin: 0;
  opacity: 0.95;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .firsat-hero {
    padding: 1.75rem 0 1.5rem;
  }
  .firsat-card-image {
    height: 200px;
  }
}
