/* case-study */

.case-study__container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.case-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* width: 80%;
  max-width: 600px; */
  margin-bottom: 20px;
  border-left: 4px solid #00aaff;
}

.case-image {
  position: relative;
  width: 100%;
  /* max-width: 300px; */
}
.case-image.before {
  position: relative;
  width: 100%;
  max-width: 190px;
  margin-top: 5px;
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.9rem;
  border-radius: 3px;
}

.case-details {
  padding: 20px;
}

.case-details h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #00aaff;
/*   border-bottom: 2px solid var(--wp--preset--color--vk-color-custom-1); */
  display: inline-block;
}

.case-details p {
  margin: 10px 0;
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.case-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.case-info span {
  font-size: 0.9rem;
  color: #333;
	margin: 5px 0;}

.site-footer-title:after, .sub-section-title:after, h3:where(:not(.wp-block-post-title)):after {
	border-bottom:1px solid var(--wp--preset--color--vivid-green-cyan);
}



