/* Case Study Showcase Pro - Exact CSS from User */

.cssp-main-wrapper .container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50%-50% */
  gap: 20px; /* optional spacing */
  width: 95%;
  max-width: 1280px;
  margin: auto;
}

/* CARD */
.cssp-main-wrapper .case-card {
  margin: 20px 0px 0px 0px !important;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* HEADER */
.cssp-main-wrapper .case-header {
  display: flex;
  flex-wrap: wrap;
}

.cssp-main-wrapper .country {
  background: #333e63;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  min-width: 140px;
  text-align: center;
}

.cssp-main-wrapper .category {
  background: #777;
  color: #f4da30;
  padding: 12px 20px;
  flex: 1;
  font-weight: bold;
}

/* BODY */
.cssp-main-wrapper .case-body {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

/* LEFT LOGO */
.cssp-main-wrapper .logo-box {
  width: 140px;
  text-align: center;
}

.cssp-main-wrapper .logo-box img {
  max-width: 100%;
}

.cssp-main-wrapper .logo-box a {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 10px;
  text-decoration: none;
}

/* CONTENT */
.cssp-main-wrapper .content {
  flex: 1;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cssp-main-wrapper .case-body {
    flex-direction: column;
    text-align: center;
  }

  .cssp-main-wrapper .container {
    display: block;
  }

  .cssp-main-wrapper .logo-box {
    width: 100%;
  }

  .cssp-main-wrapper .content {
    font-size: 12px;
    text-align: left;
  }

  .cssp-main-wrapper .country {
    width: 50%;
  }

  .cssp-main-wrapper .category {
    width: 50%;
  }
}
