.blog-modern {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }
    
    .blog-modern-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .blog-modern-header h1 {
      font-size: 38px;
      color: #1e7f7f;
      font-family: 'Playfair Display', serif;
      margin-bottom: 15px;
    }

    .blog-modern-header p {
      color: #666;
      font-size: 16px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
    }

    .modern-blog-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .modern-blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .blog-image-wrapper {
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .blog-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .modern-blog-card:hover .blog-image-wrapper img {
      transform: scale(1.05);
    }

    .blog-content {
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 13px;
      color: #888;
      margin-bottom: 12px;
    }

    .blog-meta i {
      color: #227a7a;
    }

    .blog-content h2,
    .blog-content h3 {
      font-size: 22px;
      color: #1e7f7f;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .blog-content p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .blog-read-more {
      align-self: flex-start;
      color: #227a7a;
      font-weight: bold;
      text-decoration: none;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s ease;
    }

    .blog-read-more i {
      transition: transform 0.3s ease;
    }

    .blog-read-more:hover {
      color: #145b5b;
    }

    .blog-read-more:hover i {
      transform: translateX(5px);
    }

    @media (max-width: 768px) {
      .blog-modern {
        padding: 40px 16px;
      }

      .blog-modern-header {
        margin-bottom: 30px;
      }

      .blog-modern-header h1 {
        font-size: 30px;
      }

      .blog-modern-header p {
        font-size: 15px;
      }

      .blog-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }

      .modern-blog-card {
        min-width: 0;
      }

      .blog-image-wrapper {
        height: 210px;
      }

      .blog-content {
        padding: 20px;
      }

      .blog-meta {
        flex-wrap: wrap;
        row-gap: 8px;
      }

      .blog-read-more {
        min-height: 44px;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .blog-modern-header h1 {
        font-size: 27px;
      }

      .blog-image-wrapper {
        height: 190px;
      }

      .blog-content h2,
      .blog-content h3 {
        font-size: 20px;
      }
    }
