.cm-home-intro {
  text-align: center;
  padding: 20px 0 35px;
  max-width: 900px;
  margin: 0 auto;
}

.cm-home-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.08);
  color: #00f0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cm-home-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #f4f8ff;
}

.cm-home-description {
  font-size: 17px;
  line-height: 1.7;
  color: #9fb2cc;
  max-width: 760px;
  margin: 0 auto;
}

.cm-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.cm-hero-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.cm-hero-main img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.cm-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.cm-hero-overlay h1,
.cm-hero-overlay h2 {
  font-size: 26px;
  line-height: 1.3;
}

.cm-post-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.12);
  color: #00f0ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cm-post-meta,
.cm-card-meta,
.cm-latest-meta {
  font-size: 12px;
  color: #8ea4c4;
  margin-bottom: 8px;
}

.cm-hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cm-hero-card {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.cm-hero-card-thumb img {
  width: 110px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cm-hero-card-content {
  flex: 1;
}

.cm-hero-card-title {
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
}

.cm-breaking {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 28px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.cm-breaking-label {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 70, 70, 0.14);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cm-breaking-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cm-breaking-track::-webkit-scrollbar {
  display: none;
}

.cm-breaking-item {
  white-space: nowrap;
  color: #dfe9fb;
  text-decoration: none;
  font-weight: 600;
}

.cm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s;
}

.cm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cm-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.cm-card-body {
  padding: 12px;
}

.cm-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #f4f8ff;
}

.cm-prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cm-price-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.cm-price-name {
  color: #9fb2cc;
  font-size: 14px;
  margin-bottom: 8px;
}

.cm-price-value {
  font-size: 28px;
  font-weight: 800;
  color: #f4f8ff;
  margin-bottom: 6px;
}

.cm-price-change {
  font-size: 14px;
  font-weight: 700;
}

.cm-price-change.is-up {
  color: #00d084;
}

.cm-price-change.is-down {
  color: #ff5c5c;
}

.cm-main-layout {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 24px;
}

.cm-editors-grid {
  display: grid;
  gap: 18px;
}

.cm-editor-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.cm-editor-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cm-editor-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.cm-editor-content h3 a {
  color: #f4f8ff;
  text-decoration: none;
}

.cm-editor-content p {
  color: #9fb2cc;
  line-height: 1.7;
  margin: 0;
}

.cm-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cm-category-block {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.cm-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cm-category-header h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cm-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  font-size: 14px;
  font-weight: 800;
}

.cm-category-header a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.cm-category-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cm-category-post:last-child {
  margin-bottom: 0;
}

.cm-category-thumb img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cm-category-content {
  flex: 1;
}

.cm-category-title {
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
}

.cm-latest-grid {
  display: grid;
  gap: 22px;
}

.cm-latest-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.cm-latest-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.cm-latest-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.cm-latest-title a {
  color: #f4f8ff;
  text-decoration: none;
}

.cm-latest-excerpt {
  color: #9fb2cc;
  line-height: 1.7;
  margin-bottom: 14px;
}

.cm-read-more {
  display: inline-block;
  color: #00f0ff;
  text-decoration: none;
  font-weight: 700;
}

.cm-load-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.cm-load-more {
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #00f0ff, #00ffa3);
  color: #07111f;
  font-weight: 800;
  cursor: pointer;
}

.cm-load-more.is-loading {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 1024px) {
  .cm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cm-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .cm-main-layout,
  .cm-prices-grid,
  .cm-category-grid,
  .cm-editor-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cm-home-title {
    font-size: 30px;
  }

  .cm-latest-card {
    grid-template-columns: 1fr;
  }

  .cm-latest-thumb img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .cm-grid {
    grid-template-columns: 1fr;
  }
}