.edp-areas-widget {
  --edp-cream: #FDFBF7;
  --edp-charcoal: #2C2C2C;
  --edp-accent: #C0622F;
  --edp-muted: rgba(44,44,44,.62);

  background: var(--edp-cream);
  color: var(--edp-charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.edp-areas-widget * {
  box-sizing: border-box;
}

.edp-areas-widget a {
  color: inherit;
  text-decoration: none;
}

.edp-areas-widget img {
  display: block;
  max-width: 100%;
}

.edp-areas-container {
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.edp-areas-grid-section {
  padding: 96px 0;
  background: var(--edp-cream);
}

.edp-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 32px;
}

.edp-areas-card {
  display: block;
  outline: none;
}

.edp-areas-image {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #eee;
}

.edp-areas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.edp-areas-card:hover .edp-areas-image img,
.edp-areas-card:focus-visible .edp-areas-image img {
  transform: scale(1.055);
}

.edp-areas-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.edp-areas-text {
  min-width: 0;
}

.edp-areas-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--edp-accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.edp-areas-pin {
  width: 15px;
  height: 15px;
  display: inline-flex;
  flex-shrink: 0;
}

.edp-areas-card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--edp-charcoal);
  margin: 0 0 7px;
  transition: color .25s ease;
}

.edp-areas-card:hover .edp-areas-card-title,
.edp-areas-card:focus-visible .edp-areas-card-title {
  color: var(--edp-accent);
}

.edp-areas-card-desc {
  color: rgba(44,44,44,.5);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.edp-areas-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(44,44,44,.22);
  line-height: 1;
  margin-top: 28px;
  flex-shrink: 0;
  transition: color .25s ease, transform .25s ease;
}

.edp-areas-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.edp-areas-card:hover .edp-areas-arrow,
.edp-areas-card:focus-visible .edp-areas-arrow {
  color: var(--edp-accent);
  transform: translate(3px, -3px);
}

.edp-areas-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.edp-areas-reveal.in-view,
.elementor-editor-active .edp-areas-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .edp-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .edp-areas-container {
    width: min(100% - 32px, 1240px);
  }

  .edp-areas-grid-section {
    padding: 70px 0;
  }

  .edp-areas-grid {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }
}
