@import url("https://fonts.googleapis.com/css2?family=Mullish:wght@200;300;400;500;600;700;800&display=swap");

/* common-styles.css */
body,
h1,
h2,
h3,
p,
a,
img,
ul,
li,
header,
nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mullish", sans-serif;
  /* font-optical-sizing: auto; */
  text-decoration: none;
  color: black;
  font-style: normal;
  font-size: 16px;
}
*::before,
*::after {
  box-sizing: border-box;
}

.case-study-header {
  width: 80vw;
  margin: 0 auto;
}

h2 {
  font-family: inherit;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  padding-bottom: 16px;
}

h3 {
  margin-top: 24px;
  padding-bottom: 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  /* border: #1a1a1a solid 1px; */
}

section {
  margin-top: 120px;
  margin-bottom: 100px;
  border: 1px solid #eee;
  padding: 32px;
}

.cs-image-row {
  /* chanhge in proc.html*/
  margin-top: 32px;
  width: 100%;
  object-fit: contain;
}

.cs-image {
  /* chanhge in proc.html*/
  width: 100%;
  height: auto;
  display: block;
}

/* Project Details (Uses Flexbox) --- */
.project-details-row {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  /* border: 1px solid #eee; */
}

.ul-style {
  list-style-type: none;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #333;
  line-height: 2;
}

.ul-style li {
  margin-bottom: 16px;
}

li b {
  font-weight: bold;
}

.detail-value {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

.detail-value-90ch {
  max-width: 90ch;
}

.detail-value-75ch {
  max-width: 75ch;
}

.detail-value-60ch {
  max-width: 60ch;
}
/* --- Responsiveness for Mobile Devices --- */
@media (max-width: 768px) {
  h2 {
    margin-top: 16px;
    font-size: 28px;
  }
  h3 {
    margin-top: 16px;
    font-size: 22px;
  }
  .project-details-row {
    flex-direction: column;
    gap: 15px;
  }
}
