/* =====================================================
   GLOBAL RESET
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #334155;
}

/* =====================================================
   HERO FIX
===================================================== */
.hero {
  margin-top: 0 !important;
  padding-top: 100px;
}

/* =====================================================
   MAIN BLOG CONTAINER
===================================================== */
.blog-details {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 16px;
  display: flex;
  gap: 40px;
}

/* =====================================================
   MAIN CONTENT AREA
===================================================== */
.blog-inner {
  flex: 1;
  max-width: 880px;
}

.blog-content {
  width: 100%;
}

/* =====================================================
   BLOG HEADER
===================================================== */
.blog-header {
  margin-bottom: 40px;
}

.blog-header h1 {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0b1a3d;
  margin-bottom: 12px;
}

.blog-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  max-width: 860px;
}

/* =====================================================
   HEADINGS
===================================================== */
.blog-content h2 {
  margin-top: 50px;
  margin-bottom: 14px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0b1a3d;
  position: relative;
}

.blog-content h2:first-of-type {
  margin-top: 0;
}

.blog-content h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #f4c430, #ffd866);
  border-radius: 2px;
}

/* =====================================================
   PARAGRAPHS
===================================================== */
.blog-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
  max-width: 860px;
}

/* =====================================================
   LIST STYLES
===================================================== */
.styled-list {
  margin: 22px 0;
  list-style: none;
  padding-left: 0;
  max-width: 860px;
}

.styled-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.styled-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f4c430;
}

/* =====================================================
   ROLE GRID
===================================================== */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}

.role-grid span {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1a3d;
  text-align: center;
  transition: all 0.25s ease;
}

.role-grid span:hover {
  transform: translateY(-4px);
  border-color: #f4c430;
}

/* =====================================================
   INFO / CALLOUT NOTE
===================================================== */
.info-note {
  background: #f8fafc;
  padding: 22px 24px;
  margin: 36px 0;
  border-left: 4px solid #f4c430;
  border-radius: 16px;
  font-size: 0.95rem;
  color: #334155;
}

.info-note a {
  color: #0b1a3d;
  font-weight: 600;
}

/* =====================================================
   CTA SECTION
===================================================== */
.blog-cta {
  margin: 60px 0;
  padding: 40px 34px;
  text-align: center;
  background: linear-gradient(135deg, #050b24, #0b1a3d);
  border-radius: 22px;
}

.blog-cta p {
  color: #e5e7eb;
  font-size: 1rem;
  margin-bottom: 18px;
}

/* =====================================================
   BUTTON
===================================================== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #f4c430, #ffd866);
  color: #0b1a3d;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

/* =====================================================
   OFFER / NOT OFFER GRID
===================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.info-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.info-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f4c430;
}

/* =====================================================
   SIDEBAR
===================================================== */
.blog-sidebar {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.sidebar-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1a3d;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f5;
}

/* =====================================================
   SIMILAR BLOGS
===================================================== */
.similar-blog {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f2f5;
}

.similar-blog:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-preview h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #0b1a3d;
}

.blog-preview p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #64748b;
}

.read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f4c430;
  text-decoration: none;
}

/* =====================================================
   CATEGORIES
===================================================== */
.categories-list {
  list-style: none;
  padding-left: 0;
}

.categories-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.category-count {
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .blog-details {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}
