@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-orange: #ff6820;
  --dark-slate: #282f34;
  --soft-bg: #fffbf9;
  --text-slate: #475569;
  --font-main: var(--font-family-base, 'Tomorrow', sans-serif);
  --font-head: var(--font-family-heading, 'Orbitron', sans-serif);
}

.blog-premium-hero {
  position: relative;
  padding: 200px 0 150px;
  background: url("../img/headerbanner2.jpeg") center center/cover no-repeat;
  margin-bottom: 60px;
}

.blog-premium-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(40, 47, 52, 0.5),
    rgba(40, 47, 52, 0.2)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 15px;
  color: #fff;
}

.blog-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 104, 32, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 104, 32, 0.4);
  color: #ff9d6e;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-title {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-item i {
  color: var(--primary-orange);
}

/* Content Styling */
.article-container {
  font-family: var(--font-main);
  color: var(--text-slate);
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #1e293b;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-orange);
  padding-left: 25px;
}

.content-block {
  margin-bottom: 50px;
}

.section-head {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--dark-slate);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.section-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

/* Highlight Box */
.highlight-box {
  background: #fff3ed;
  border: 1px solid rgba(255, 104, 32, 0.1);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
}

.highlight-box h4 {
  font-family: var(--font-head);
  color: var(--dark-slate);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Insight Grid */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.insight-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 104, 32, 0.1);
  border-color: var(--primary-orange);
}

.insight-icon {
  width: 40px;
  height: 40px;
  background: var(--soft-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.insight-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.insight-text {
  font-size: 0.95rem;
  margin: 0;
  color: #64748b;
}

.results-highlight {
  background: rgba(255, 104, 32, 0.04);
  color: var(--dark-slate);
  padding: 40px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 104, 32, 0.05);
  border: 1px solid rgba(255, 104, 32, 0.1);
}

.results-highlight h3 {
  color: var(--dark-slate) !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.results-highlight::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  opacity: 0.1;
  border-radius: 50%;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.check-list li i {
  color: var(--primary-orange);
  background: rgba(255, 104, 32, 0.1);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Sidebar - COPIED from reference */
.sidebar-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  position: sticky;
  top: 100px;
}

.widget-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--soft-bg);
}

.recent-post-card {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.recent-post-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-img {
  max-width: 100px;
  border-radius: 12px;
  object-fit: cover;
  scale: 1.1;
}

.recent-post-info h5 {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-info h5 a {
  color: var(--dark-slate);
  text-decoration: none;
  transition: 0.3s;
}

.recent-post-info h5 a:hover {
  color: var(--primary-orange);
}

.recent-post-date {
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 767px) {
  .blog-title {
    font-size: 2rem;
  }

  .section-head {
    font-size: 1.5rem;
  }

  p,
  .article-container,
  .insight-text,
  .check-list li {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 991px) {
  .blog-title {
    font-size: 2.5rem;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }
}
