﻿/* BREADCRUMB - inside hero */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}

.breadcrumb-bar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-bar a:hover { color: #fff; }

.bc-sep { color: rgba(255,255,255,0.4); font-size: 11px; }

.bc-current {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* HERO BANNER */
.cs-hero {
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  padding: 32px 24px 0;
  position: relative;
  overflow: visible;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(124,92,191,0.2) 0%, transparent 60%);
  pointer-events: none;
}

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

.cs-hero .section-label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cs-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  padding-bottom: 8px;
  line-height: 1.15;
}

/* FEATURED */
.cs-featured {
  padding: 0px;
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.cs-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 28px;
  padding-top: 40px;
}

.cs-featured-card {
  position: relative;
  margin-top: 0;
  z-index: 10;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.cs-featured-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .cs-featured-card img {
    height: auto;
    object-fit: unset;
  }
}

.cs-featured-meta {
  padding: 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-date {
  color: #999;
  font-size: 13px;
}

.cs-featured-meta h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}

.cs-featured-meta p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.cs-featured-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

/* GRID */
.cs-grid-section {

  background: #eaf0f0;
}

.cs-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cs-grid-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
}

.cs-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
}

.cs-filter-btn:hover { border-color: #7c5cbf; color: #7c5cbf; }

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

.cs-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.cs-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.cs-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cs-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-tag {
  color: #7c5cbf;
  font-size: 16px;
  font-weight: 600;
}

.cs-read {
  color: #999;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cs-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
}

.cs-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .cs-featured-card { grid-template-columns: 1fr; }
  .cs-featured-meta { padding: 24px; }
  .cs-grid { grid-template-columns: 1fr; }
}

/* ABOUT SECTION */
.cs-about-section {
  background: #eaf0f0;
  border-bottom: 1px solid #f0eeff;
}

.cs-about-section p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cs-about-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #7c5cbf;
  margin-bottom: 16px;
}

.cs-about-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;

}

.cs-about-section ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.cs-about-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c5cbf;
}

