116 lines
1.8 KiB
SCSS
116 lines
1.8 KiB
SCSS
.elementor-review-box {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding: 42px 48px;
|
|
background: #fff;
|
|
border: 1px solid #e2e4e9;
|
|
border-radius: 28px;
|
|
box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
|
|
overflow: hidden;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
&:hover {
|
|
border-color: #ee2b8c33 !important;
|
|
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
|
|
0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
&__top {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
&__stars {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
line-height: 1;
|
|
}
|
|
|
|
&__star {
|
|
font-size: 28px;
|
|
line-height: 1;
|
|
color: #f4c214;
|
|
display: inline-flex;
|
|
}
|
|
|
|
&__quote {
|
|
opacity: 0.6;
|
|
svg {
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
width: 48px;
|
|
height: 48px;
|
|
line-height: 1;
|
|
color: #f6d6e6;
|
|
pointer-events: none;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
width: 100%;
|
|
}
|
|
|
|
&__text {
|
|
font-size: 24px;
|
|
line-height: 1.55;
|
|
font-weight: 400;
|
|
color: #222b3a;
|
|
letter-spacing: -0.01em;
|
|
word-break: break-word;
|
|
}
|
|
|
|
&__footer {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
&__avatar {
|
|
border-radius: 50%;
|
|
background: #f6d6e6;
|
|
color: #e23d94;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
&__author {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__name {
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
color: #1f2737;
|
|
word-break: break-word;
|
|
}
|
|
|
|
&__location {
|
|
font-size: 18px;
|
|
line-height: 1.35;
|
|
font-weight: 400;
|
|
color: #667085;
|
|
word-break: break-word;
|
|
}
|
|
}
|