.ipga-quotes {
display: flex;
flex-direction: column;
gap: 24px;
margin: 8px 0 16px;
}
.ipga-quote {
display: flex;
align-items: flex-start;
gap: 24px;
background: #ffffff;
border: 1px solid #ececec;
border-left: 4px solid #e1502a;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
padding: 28px 32px;
}
.ipga-quote__body {
flex: 1 1 auto;
min-width: 0;
}
.ipga-quote__mark {
flex: 0 0 auto;
display: block;
width: 42px;
height: auto;
}
.ipga-quote__text {
font-style: italic;
color: #555;
line-height: 1.65;
margin: 0 0 16px;
}
.ipga-quote__author {
margin: 0;
font-size: 0.95em;
color: #666;
}
.ipga-quote__name {
color: #e1502a;
font-weight: 700;
}
.ipga-quote__avatar {
flex: 0 0 auto;
width: 110px;
height: 110px;
border-radius: 50%;
object-fit: cover;
}
@media (max-width: 767px) {
.ipga-quote {
flex-direction: column;
align-items: flex-start;
text-align: left;
padding: 24px 20px;
}
.ipga-quote__mark {
order: 1;
}
.ipga-quote__body {
order: 2;
}
.ipga-quote__avatar {
order: 3;
margin-top: 4px;
}
}