/* ENS Banner Styles */

.c-ens-banner {
  background: linear-gradient(90deg, #0090d0 0%, #00b05b 100%);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 480px;
  font-family: var(--font-family, sans-serif);
}

.c-ens-banner__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ---- Info Column ---- */
.c-ens-banner__info {
  flex: 1 1 50%;
  max-width: 580px;
  padding: 48px 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}

/* ---- Logo Row ---- */
.c-ens-banner__logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.c-ens-banner__logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-ens-banner__logo-icon {
  opacity: 0.95;
  flex-shrink: 0;
}

.c-ens-banner__logo-word {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.c-ens-banner__logo-desc {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  line-height: 1.15;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 8px;
}

.c-ens-banner__logo-pipe {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.5;
}

.c-ens-banner__logo-country {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
}

/* ---- Heading & Divider ---- */
.c-ens-banner__title {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.25;
}

.c-ens-banner__divider {
  width: 60px;
  height: 3px;
  background: #ffffff;
  margin-bottom: 24px;
}

/* ---- Text & Button ---- */
.c-ens-banner__text {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 36px;
  max-width: 520px;
}

.c-ens-banner__action {
  display: flex;
}

.c-ens-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #02a365;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.c-ens-banner__btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.c-ens-banner__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02a365;
}

/* ---- Visual Column (Right) ---- */
.c-ens-banner__visual {
  flex: 1 1 45%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
}

.c-ens-banner__img-wrap {
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.c-ens-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(16px);
}

/* ---- Responsive Breakpoints ---- */
@media (max-width: 900px) {
  .c-ens-banner {
    min-height: auto;
  }
  .c-ens-banner__container {
    flex-direction: column;
    padding: 0 24px;
  }
  .c-ens-banner__info {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 48px 0 24px;
    align-items: center;
    text-align: center;
  }
  .c-ens-banner__logo-row {
    justify-content: center;
  }
  .c-ens-banner__divider {
    margin: 0 auto 24px;
  }
  .c-ens-banner__text {
    margin-bottom: 28px;
  }
  .c-ens-banner__action {
    justify-content: center;
  }
  .c-ens-banner__visual {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
  }
  .c-ens-banner__img-wrap {
    max-width: 360px;
  }
  .c-ens-banner__img {
    transform: translateY(8px);
  }
}

@media (max-width: 600px) {
  .c-ens-banner__title {
    font-size: 30px;
  }
  .c-ens-banner__text {
    font-size: 13.5px;
  }
}
