.hero {
  position: relative;
  background: #0B0D0E;
  color: #fff;
  min-height: 540px;
  padding: 75px 0 48px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media (max-width: 767px) {
    min-height: 340px;
  }
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #23272F 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, #23272F 0 1px, transparent 1px 80px);
  opacity: 0.5;
  z-index: 0;
}

.hero__grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 1px, transparent 1px 80px), repeating-linear-gradient(180deg, transparent 0 1px, transparent 1px 80px);
  z-index: 1;
  pointer-events: none;
}

.hero__grid-cell {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #23272F;
  opacity: 0;
  z-index: 1;
  pointer-events: auto;
  transition: background 0.18s, opacity 0.18s;
}

.hero__grid-cell:hover {
  opacity: 1;
  z-index: 2;
  background: #2563eb;
}

.hero__centerpiece {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -1px;
  padding: 2rem 0;
  color: white;
}

.hero__badge {
  display: inline-block;
  background: #181A1B;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 16px;
  padding: 4px 16px;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero__cta {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.10);
  transition: background 0.18s;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero__cta-arrow {
  display: inline-block;
  opacity: 0;
  width: 0;
  margin-left: 0;
  font-size: 1.2em;
  transition: opacity 0.18s, width 0.18s, margin-left 0.18s;
  white-space: nowrap;
  overflow: hidden;
}

.hero__cta:hover {
  background: #1746b3;
}

.hero__cta:hover .hero__cta-arrow {
  opacity: 1;
  width: 1.2em;
  margin-left: 0.5em;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 2.2rem;
  }
}

.blogs-list {
  background: #fff;
  padding: 48px 0 64px 0;
}

.blogs-list__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blogs-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(37, 99, 235, 0.07), 0 1.5px 6px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 0;
  min-height: 420px;
  position: relative;
}

.blog-card:hover {
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px) scale(1.02);
}

.blog-card__img-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 210px;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.18s;
}

.blog-card__img-link:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card__reading {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 3px 12px;
  font-weight: 500;
  z-index: 2;
}

.blog-card__body {
  padding: 1.5rem 1.3rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__author-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.blog-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.blog-card__tag {
  background: #f1f5f9;
  color: #2563eb;
  font-size: 0.95rem;
  border-radius: 10px;
  padding: 2px 10px;
  font-weight: 500;
  margin-left: 8px;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #181A1B;
  margin-bottom: 0.7rem;
  text-decoration: none;
  display: block;
  transition: color 0.18s;
}

.blog-card__title:hover {
  color: #2563eb;
}

.blog-card__meta-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.98rem;
  color: #6b7280;
  margin-top: auto;
}

.blog-card__meta i {
  margin-right: 4px;
}

@media (max-width: 600px) {
  .blogs-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card__body {
    padding: 1.1rem 0.8rem 1rem 0.8rem;
  }
}