  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .blog-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .blog-card-link {
    text-decoration: none;
    color: inherit;
  }

  .blog-card {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    display: flex;
    transition: 0.3s ease all;
  }

  .blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-3px);
  }

  .blog-image-container {
    width: 50%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f0f0f0;
  }

  .blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .blog-text-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .blog-excerpt {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .blog-card {
      flex-direction: column;
      height: auto;
    }

    .blog-image-container,
    .blog-text-content {
      width: 100%;
    }

    .blog-image-container {
      height: 200px;
    }
  }

  @media (max-width: 576px) {
    .blog-title { font-size: 1.2rem; }
    .blog-excerpt { font-size: 0.85rem; }
  }

  .empty-blog {
    text-align: center;
    padding: 60px 20px;
    color: #666;
  }

  .empty-blog h3 {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .empty-blog p {
    font-size: 1rem;
    color: #999;
  }

  .detail-container {
    max-width: 100%;
    margin: 0;
    padding: 0 10px; /* մի փոքր մոտեցված */
  }

  .detail-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    color: #222;
    text-align: center;
  }

  .detail-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto 20px auto;
  }

  .detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 40px;
  }

  @media (max-width: 768px) {
    .detail-title {
      font-size: 1.6rem;
    }
    .detail-content {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .detail-title {
      font-size: 1.4rem;
    }
    .detail-content {
      font-size: 0.95rem;
    }
  }