/* =====================================================
   MODERN SINGLE POST – GLASS UI
===================================================== */

:root {
  --primary: #1F6F8B;
  --secondary: #2FA4B8;
  --accent: #12b76a;

  --text-dark: #0f172a;
  --text-muted: #64748b;

  --border: #e6ecef;
}

/* =====================================================
   GLOBAL
===================================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fbfa;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

/* =====================================================
   HERO
===================================================== */

.ck-post-hero {
  padding: 90px 20px 70px;
  text-align: center;
	background: url('/wp-content/uploads/2026/02/career-scaled.png') center / cover no-repeat;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glow */
.ck-post-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(60px);
}

.ck-post-title {
  font-size: 40px;
  line-height: 1.3;
  max-width: 780px;
  margin: 10px auto;
}

.ck-post-category {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.ck-post-meta {
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0.9;
}

/* =====================================================
   BACKGROUND (for glass effect)
===================================================== */

.ck-post-content {
  background:
    radial-gradient(circle at 20% 20%, rgba(47,164,184,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(31,111,139,0.12), transparent 40%),
    linear-gradient(180deg, #f8fbfa, #eef5f4);

  padding: 80px 20px;
}

/* =====================================================
   GLASS CARD
===================================================== */

.ck-post-container {
  max-width: 760px;
  margin: 0 auto;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.4);

  /* PREMIUM SHADOW */
  box-shadow:
    0 25px 60px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition: all 0.35s ease;

  overflow: hidden;
  position: relative;
}


/* Glow inside card */
.ck-post-container::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(47,164,184,0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Ensure content above glow */
.ck-post-container > * {
  position: relative;
  z-index: 2;
}

/* =====================================================
   IMAGE (top of card)
===================================================== */

.ck-post-featured-image {
  width: 100%;
  margin: 0;
  line-height: 0;
}

.ck-post-featured-image img {
  width: 100%;
  display: block;
}

/* =====================================================
   ARTICLE
===================================================== */

.ck-post-article {
  padding: 30px 32px 0;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}

/* Headings */
.ck-post-article h2 {
  font-size: 26px;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.ck-post-article h3 {
  font-size: 20px;
  margin-top: 22px;
  margin-bottom: 8px;
}

.ck-post-article p {
  margin-bottom: 16px;
}

/* Lists */
.ck-post-article ul,
.ck-post-article ol {
  padding-left: 20px;
  margin: 20px 0;
}

.ck-post-article li {
  margin-bottom: 8px;
}

/* Bold highlight */
.ck-post-article strong {
  color: var(--text-dark);
}

/* =====================================================
   TAGS
===================================================== */

.ck-post-tags {
  padding: 20px 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ck-post-tags span {
  background: rgba(47,164,184,0.12);
  border: 1px solid rgba(47,164,184,0.25);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
}

/* =====================================================
   SHARE
===================================================== */

.ck-post-share {
  padding: 20px 32px 30px;
  margin-top: 20px;
  border-top: 1px solid var(--border);

  display: flex;
  align-items: center;
  gap: 12px;
}

.ck-share-label {
  font-weight: 600;
  color: #334155;
}

/* Icon */
.ck-share-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #475569;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.4);
}

.ck-share-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Brand colors */
.ck-share-icon.fb:hover { background: #1877f2; }
.ck-share-icon.tw:hover { background: #1da1f2; }
.ck-share-icon.li:hover { background: #0a66c2; }
.ck-share-icon.wa:hover { background: #25d366; }

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

  .ck-post-title {
    font-size: 26px;
  }

  .ck-post-container {
    border-radius: 16px;
  }

  .ck-post-article {
    padding: 20px 18px 0;
    font-size: 15px;
  }

  .ck-post-tags {
    padding: 16px 18px 0;
  }

  .ck-post-share {
    padding: 16px 18px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

}








/* ================================
   BLOG SECTION LAYOUT
================================ */

.blog-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ================================
   BLOG CARD
================================ */

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.blog-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-content h3 a {
  color: #0f2c53;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #0ea5a4;
}

.blog-content p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  background: #0ea5a4;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more:hover {
  background: #0f2c53;
}

.blog-pagination {
  margin-top: 60px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.blog-pagination .current {
  background: #0ea5a4;
  color: #fff;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .blog-section {
    padding: 60px 16px;
  }
}

/* ================================
   BLOG HERO – PREMIUM STYLE
================================ */

.blog-hero {
  position: relative;
  padding: 100px 20px 80px;
	background: url('/wp-content/uploads/2026/02/career-scaled.png') center / cover no-repeat;
  background: linear-gradient(135deg, #0f2c53 0%, #0ea5a4 100%);
  color: #fff;
  overflow: hidden;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-hero .hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  display: inline-block;
  margin-bottom: 15px;
}

.blog-hero h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
}

.blog-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 768px) {
  .blog-hero {
    padding: 80px 20px 60px;
  }

  .blog-hero h1 {
    font-size: 34px;
  }

  .blog-hero p {
    font-size: 16px;
  }
}