.blog-section .section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-section .eyebrow {
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #f86d01;
  font-size: 0.85rem;
}

.blog-search .form-control,
.blog-search .input-group-text {
  background: #fff;
  border-color: #f1f1f1;
}

.blog-search .form-control:focus {
  box-shadow: 0 0 0 0.12rem rgba(248, 109, 1, 0.22);
  border-color: #f86d01;
}

.blog-status {
  margin-bottom: 0.75rem;
}

.blog-status__message {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #f1f1f1;
  background: #fff;
  color: #475569;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.blog-status__message.muted {
  color: #475569;
}

.blog-status__message.error {
  border-color: rgba(248, 109, 1, 0.35);
  background: rgba(248, 109, 1, 0.08);
  color: #b24a00;
}

.blog-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2f2f2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
  width: 100%;
  padding-top: 62%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f8fafc;
  border-bottom: 1px solid #eef1f5;
}

.blog-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.blog-card__meta {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
}

.blog-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.35;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__title a:hover,
.blog-card__title a:focus {
  color: #f86d01;
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0.1rem 0 0.35rem;
  color: #4b5563;
  line-height: 1.6;
}

.blog-card__link {
  font-weight: 700;
  color: #f86d01;
  text-decoration: none;
  padding: 0;
}

.blog-card__link:hover,
.blog-card__link:focus {
  text-decoration: underline;
}

.blog-card.is-skeleton {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f2f4f7 100%);
}

.blog-card.is-skeleton .blog-card__image {
  background: linear-gradient(90deg, #f0f4f8 0%, #e4e8ec 50%, #f0f4f8 100%);
}

.blog-card.is-skeleton .blog-card__body {
  gap: 0.5rem;
}

.skeleton-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef2f7 0%, #e5e7eb 50%, #eef2f7 100%);
}

.skeleton-line.w-50 {
  width: 50%;
}

.skeleton-line.w-75 {
  width: 75%;
}

.skeleton-line.w-80 {
  width: 80%;
}

.skeleton-line.w-100 {
  width: 100%;
}

.skeleton-line.w-40 {
  width: 40%;
}

.blog-modal {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.blog-modal__close {
  position: absolute;
  right: 12px;
  top: 8px;
  z-index: 3;
}

.blog-modal__image {
  width: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111827;
}

.blog-modal__body {
  padding: 1.4rem 1.6rem 1.6rem;
}

.blog-modal__meta {
  margin: 0;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.blog-modal__title {
  margin: 0.3rem 0 0.8rem;
  font-weight: 800;
  color: #111827;
}

.blog-modal__content p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.blog-pagination {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination .page-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #1f2937;
  padding: 0.35rem 0.85rem;
  border-radius: 10px;
  font-weight: 700;
  min-width: 42px;
  transition: all 0.15s ease;
}

.blog-pagination .page-btn:hover:not(:disabled) {
  color: #f86d01;
  border-color: #f86d01;
}

.blog-pagination .page-btn.active {
  background: #f86d01;
  border-color: #f86d01;
  color: #fff;
  box-shadow: 0 12px 30px rgba(248, 109, 1, 0.25);
}

.blog-pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 767.98px) {
  .blog-section .section-title {
    font-size: 1.6rem;
  }
}
