.career-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 84px 20px;
  min-height: 60vh;
  background:
    radial-gradient(circle at top right, rgba(11, 110, 253, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.career-main-card {
  display: flex;
  width: 90%;
  max-width: 1300px;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 56px rgba(5, 18, 35, 0.12);
  border: 1px solid rgba(7, 27, 51, 0.08);
  animation: floatMain 8s ease-in-out infinite;
}

@keyframes floatMain {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes cardFlow {
  0% { background: rgba(255, 255, 255, 0.08); }
  50% { background: rgba(255, 255, 255, 0.15); }
  100% { background: rgba(255, 255, 255, 0.08); }
}

.career-left {
  flex: 1;
  height: 100%;
}

.career-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-right {
  flex: 1;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #071b33;
}

.career-right h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 20px;
  color: #071b33;
}

.career-right p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #5e6c7f;
}

.career-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #071b33, #0b2d56);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 16px 28px rgba(7, 27, 51, 0.16);
}

.career-btn:hover {
  background: #0b2d56;
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(7, 27, 51, 0.20);
}

.home-blog-section {
  padding: 48px 20px 88px;
  background:
    radial-gradient(circle at top left, rgba(11, 45, 86, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
}

.home-blog-header {
  margin: 0 auto 24px;
  max-width: 1300px;
}

.home-blog-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-blog-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #091e3a;
  border: 1px solid rgba(9, 27, 51, 0.08);
  box-shadow: 0 18px 48px rgba(10, 26, 45, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-blog-card.featured {
  grid-row: auto;
}

.home-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(10, 26, 45, 0.14);
}

.home-blog-media {
  display: block;
  position: absolute;
  inset: 0;
  background: #091e3a;
  overflow: hidden;
}

.home-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.45s ease;
  transform: translateZ(0);
}

.home-blog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0.02) 0%, rgba(7, 27, 51, 0.05) 38%, rgba(7, 27, 51, 0.14) 100%);
  pointer-events: none;
}

.home-blog-card:hover .home-blog-media img {
  transform: scale(1.05);
}

.home-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-blog-meta--inverse {
  color: rgba(255, 255, 255, 0.84);
}

.home-blog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b1d3a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(5, 18, 35, 0.18);
  z-index: 3;
}

.home-blog-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 32px 22px 18px;
  background: linear-gradient(180deg, rgba(6, 17, 33, 0) 0%, rgba(6, 17, 33, 0.34) 34%, rgba(6, 17, 33, 0.86) 100%);
}

.home-blog-headline {
  margin-top: 18px;
}

.home-blog-overlay h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.home-blog-overlay h3 a {
  color: #fff;
}

.home-blog-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.62;
  font-size: 0.96rem;
}

.home-share-strip {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.home-share-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.home-share-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-share-icons a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-share-icons a:hover {
  transform: translateY(-2px);
  color: #8bc3ff;
}

.home-share-icons a[data-share-network="instagram"] {
  color: rgba(255, 255, 255, 0.92);
}

.home-blog-body {
  display: none;
}

.home-blog-link {
  display: none;
}

.btn-container {
  display: flex;
  gap: 20px;
}

.btn-about {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  background: rgba(7, 27, 51, 0.06);
  color: #fff;
  color: #071b33;
  border-radius: 999px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid rgba(7, 27, 51, 0.08);
}

.btn-about:hover {
  background: #071b33;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .career-main-card {
    flex-direction: column;
    height: auto;
  }

  .career-left {
    height: 250px;
  }

  .career-right {
    padding: 32px 24px;
    text-align: center;
  }

  .career-right h2 {
    font-size: 2rem;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
