.ewc-wrap {
position: relative;
width: 100%;
height: 480px; overflow: hidden;
display: flex;
flex-direction: column;
justify-content: flex-end;
} .ewc-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
transform-origin: center center;
will-change: transform; } .ewc-wrap--zoom .ewc-bg {
transform: scale(1.06);
transition: transform 6s ease;
}
.ewc-wrap--zoom:hover .ewc-bg {
transform: scale(1.00);
} .ewc-overlay {
--ewc-overlay-start: rgba(5, 5, 8, 0.05);
--ewc-overlay-mid:   rgba(5, 5, 8, 0.38);
--ewc-overlay-end:   rgba(5, 5, 8, 0.92);
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
var(--ewc-overlay-start) 0%,
var(--ewc-overlay-mid)   42%,
var(--ewc-overlay-end)   100%
);
pointer-events: none;
} .ewc-content {
position: relative;
z-index: 2;
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 32px;
padding: clamp(24px, 5%, 52px);
} .ewc-text {
flex: 1;
min-width: 0;
} .ewc-eyebrow {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
color: #e8c97a; }
.ewc-eyebrow::before {
content: '';
flex-shrink: 0;
width: 26px;
height: 1px;
background: currentColor;
opacity: 0.65;
}
.ewc-eyebrow-text {
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
font-weight: 500;
line-height: 1;
} .ewc-headline {
color: #ffffff; line-height: 1.05;
margin-bottom: 14px; } .ewc-body {
color: rgba(255, 255, 255, 0.62); line-height: 1.65;
max-width: 540px; } .ewc-btn-wrap {
flex-shrink: 0;
align-self: flex-end;
}
.ewc-btn {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 7px;
width: 108px; height: 108px;
border-radius: 50%;
border-style: solid;
border-width: 1px;
border-color: rgba(232, 201, 122, 0.45); background: transparent; color: #e8c97a; text-decoration: none;
cursor: pointer;
outline: none; transition:
background     0.28s ease,
border-color   0.28s ease,
color          0.28s ease,
transform      0.24s cubic-bezier(0.34, 1.56, 0.64, 1),
box-shadow     0.28s ease;
} .ewc-btn:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28); } .ewc-btn:active {
transform: translateY(-1px) scale(1.01);
transition-duration: 0.08s;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
} .ewc-btn-icon {
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ewc-btn:hover .ewc-btn-icon {
transform: translateY(4px); }
.ewc-btn-icon svg {
width: 18px;
height: 18px;
display: block;
} .ewc-btn-icon i,
.ewc-btn-icon svg path,
.ewc-btn-icon svg line,
.ewc-btn-icon svg polyline {
color: inherit;
stroke: currentColor;
} .ewc-btn-text {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
line-height: 1.3;
text-align: center;
color: inherit;
} @media screen and (max-width: 1024px) {
.ewc-content {
gap: 24px;
}
.ewc-body {
max-width: 400px;
}
} @media screen and (max-width: 767px) {
.ewc-content {
flex-direction: column;
align-items: flex-start;
justify-content: flex-end;
gap: 20px;
}
.ewc-text {
width: 100%;
}
.ewc-body {
max-width: 100%;
}
.ewc-btn-wrap {
align-self: flex-start;
} .ewc-btn {
width: auto !important; height: auto !important;
border-radius: 2px;
flex-direction: row;
gap: 10px;
padding: 13px 22px;
}
.ewc-btn:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
} .ewc-btn-icon {
transform: none;
}
.ewc-btn:hover .ewc-btn-icon {
transform: translateX(4px);
}
} @media screen and (max-width: 480px) {
.ewc-eyebrow {
margin-bottom: 10px;
}
.ewc-eyebrow::before {
width: 18px;
}
.ewc-headline {
margin-bottom: 10px;
}
} .elementor-editor-active .ewc-bg {
transition: none !important;
}