@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');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: hsl(214, 17%, 92%);

    font-size: 0.8125rem;
    font-weight: 500;
    font-family: 'Barlow Semi Condensed', sans-serif;
}
h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}
h3 {
    font-size: 0.8125rem;
}
p {
    font-weight: 500;
    line-height: 1.1rem;
}
img {
    display: inline;
    object-fit: cover;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 1rem;
}
.testimonials {
    max-width: 1440px;
    display: grid;
    padding-inline: clamp(2rem, 10vw, 10rem);
    padding-block: 2rem;
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(2, auto); 
    gap: 2rem;
}
.testimonials__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background-color: white;
    border-radius: .5rem;

    box-shadow: 3rem 3rem 2rem rgba(0, 0, 0, 0.17);
}
.testimonials__profile {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 1rem;
}
.testimonials__user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials__status {
    font-size: 0.7rem;
    line-height: .8rem;
}
.testimonials__card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 2;

    background-image: url('images/bg-pattern-quotation.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 4rem) 0;
    background-color: hsl(263, 55%, 52%);
    color: hsl(0, 0%, 81%);
}
.testimonials__card--featured img {
    border: 2px solid hsl(264, 82%, 80%);
}
.testimonials__card--compact:nth-of-type(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;

    background-color: hsl(217, 19%, 35%);
    color: hsl(0, 0%, 81%);
}
.testimonials__card--compact:nth-of-type(2) img {
    border: 2px solid;
}
.testimonials__card--compact:nth-of-type(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;

    color:hsl(224, 10%, 45%);
}
.testimonials__card--wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;

    background-color: hsl(219, 29%, 14%);
    color:hsl(0, 0%, 81%);
}
.testimonials__card--wide img {
    border: 2px solid hsl(263, 55%, 52%);
}
.testimonials__card--tall {
    grid-column: 4 / 5;
    grid-row: 1 / 3;

    color:hsl(224, 10%, 45%);
}
.u-text-light-grey {
  color: hsl(214, 17%, 92%)
}
.u-text-dark-grey {
    color: hsl(217, 19%, 35%);
}
@media (max-width: 1150px) {
    .testimonials {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}