  .case-studies {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 2rem;
  }

  .case-study {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: var(--dlight);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }

  .case-study img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 250px;
  }

  .case-content h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: var(--white);
  }

  .case-content p {
    margin: 8px 0;
    color: var(--white);
    line-height: 1.6;
  }

  .case-content .tags {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--white);
  }

  .case-content .case-link {
    margin-top: 1rem;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    .case-study {
      grid-template-columns: 1fr;
    }
  }