
.belykweb-blog-section { background: #fff; }
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.16);
}
.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }
.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #00003C;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .blog-card-title { font-size: 1rem; }
}
.blog-card-excerpt {
  color: #666;
  flex: 1;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.blog-card-btn {
  background: none;
  border: none;
  color: #00003C;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}
.blog-card-btn:hover { color: #FF7A41; }
}
.blog-card-btn i { margin-left: 6px; transition: transform 0.25s ease; }
.blog-card-btn:hover i { transform: translateX(4px); }
.blog-modal-box { max-width: 500px; }
.blog-badge-modal { top: 190px; left: 20px; }
.blog-modal-content p { text-align: left; margin-bottom: 12px; }
