@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Barlow Semi Condensed", sans-serif;
  /* max-width: 1440px; */
  font-weight: 500;
  background: hsl(214, 17%, 92%);
  margin: 100px;
}
.testimonial-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), 0 6px 6px rgba(0, 0, 0, 0.05);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonial-image {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  object-fit: cover;
}
.name {
  font-weight: 600;
  font-size: 0.9rem;
}
.title {
  font-weight: 400;
  font-size: 0.8rem;
}
.highlight {
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.body {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
}
.testionial-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  max-width: none;
  margin: 0 auto;
  gap: 2rem;
  grid-template-areas:
    "a a b e"
    "c d d e";
}

.a {
  grid-area: a;
  color: hsl(260, 100%, 95%);
  background: hsl(263, 55%, 52%);
}

.b {
  grid-area: b;
  color: hsl(214, 17%, 92%);
  background: hsl(217, 19%, 35%);
}

.c {
  grid-area: c;
  color: hsl(217, 19%, 35%);
  background-color: hsl(0, 0%, 100%);
}

.d {
  grid-area: d;
  background: hsl(219, 29%, 14%);
  color: hsl(0, 0%, 81%);
}

.e {
  grid-area: e;
  color: hsl(217, 19%, 35%);
  background-color: hsl(0, 0%, 100%);
}

.a .testimonial-image{
    border: 2px solid hsl(264, 82%, 80%);
}
.d .testimonial-image{
    border: 2px solid hsl(263, 55%, 52%);
}

.card-1 {
  position: relative;
  background-image: url("./images/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top right 2rem;
  background-size: 100px 100px;
}

@media screen and (max-width: 760px) {
  .testionial-container {
    display: block;
  }
  .testimonial-card {
    margin-bottom: 1rem;
  }
  body {
    margin: 50px;
  }
}
