*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Barlow Semi Condensed',sans-serif;
  background:hsl(214,17%,92%);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  font-size: 13px;
}

.container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows:auto;
  gap:20px;
  max-width:1000px;
}

.card{
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 25px rgba(0,0,0,0.2);
}


.profile{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-bottom:20px;
}

.profile img{
  width:40px;
  height:40px;
  border-radius:50%;
}

.profile h4{
  font-size:14px;
  font-weight:600;
  margin-bottom: 2px;
}

.verified{
  font-size:12px;
  opacity:.6;
}

.card h2{
  font-size:20px;
  margin-bottom:15px;
  font-weight:600;
}

.quote{
  font-size:13px;
  line-height:1.6;
  opacity:.8;
}

.card1{
  background:hsl(263,55%,52%);
  color:white;
  grid-column:1/3;
  background-image:url("images/bg-pattern-quotation.svg");
  background-repeat:no-repeat;
  background-position:top right 80px;
}

.card2{
  grid-column:3/4;
  background:hsl(217,19%,35%);
  color:white;
}


.card3{
  grid-column:4/5;
  grid-row:1/3;
  background:#f5f5f5;
  color:black;

}

.card4{
  background: white;
  color: black;
  grid-column:1/2;
}

.card5{
  background:hsl(219,29%,14%);
  color: white;
  grid-column:2/4;
}


@media(max-width: 768px ) {
  .container {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
    margin: 30px;
  }

  .card1,
  .card2,
  .card3,
  .card4,
  .card5 {
    grid-column: auto;
    grid-row: auto;
  }

  .card1 {
    background-image: none;
  }
}