@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=IM+Fell+English:ital@0;1&display=swap');

.banner-wrap {
  width: 100%;
  background: #1a0a08;
  border: 1px solid #8B6914;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  font-family: 'Cinzel', Georgia, serif;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 105, 20, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(100, 20, 10, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(100, 20, 10, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.banner-border-top {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #8B6914 20%, #D4AF37 50%, #8B6914 80%, transparent 100%);
}

.banner-border-bot {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #8B6914 20%, #D4AF37 50%, #8B6914 80%, transparent 100%);
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  position: relative;
  z-index: 1;
}

.banner-icon-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.banner-cross {
  width: 56px;
  height: 56px;
}

.banner-ornament {
  width: 80px;
  height: 16px;
  opacity: 0.7;
}

.banner-text-col {
  flex: 1;
}

.banner-pretitle {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #A07820;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.banner-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.banner-subtitle {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #c9a87a;
  line-height: 1.6;
  max-width: 480px;
}

.banner-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8B6914, transparent);
  margin: 12px 0;
}

.banner-features {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.banner-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  color: #A07820;
  letter-spacing: 1px;
}

.banner-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D4AF37;
  flex-shrink: 0;
}

.banner-cta-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.banner-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #D4AF37;
  color: #D4AF37;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 28px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-decoration: none !important;
}

.banner-btn::before,
.banner-btn::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: #D4AF37;
  border-style: solid;
}

.banner-btn::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.banner-btn::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.banner-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37 !important;
}

.banner-note {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 11px;
  color: #6b4e2a;
  text-align: center;
}

.side-rule {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #8B6914 30%, #8B6914 70%, transparent);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }

  .side-rule {
    display: none;
  }

  .banner-divider {
    margin: 12px auto;
  }

  .banner-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .banner-inner {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 20px 15px;
    gap: 10px 15px;
  }
  
  .banner-icon-col {
    grid-row: 1 / span 2;
    width: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  
  .banner-icon-col div {
    width: 44px !important;
    height: 44px !important;
  }
  
  .banner-icon-col i {
    font-size: 20px !important;
  }

  .banner-text-col {
    grid-column: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .banner-pretitle {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 0;
  }

  .banner-title {
    font-size: 19px;
    margin-bottom: 5px;
  }

  .banner-subtitle {
    width: 100%;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
    margin-top: 5px;
  }

  .banner-divider {
    display: none;
  }

  .banner-cta-col {
    grid-column: 2;
    width: 100%;
    align-items: center;
    margin-top: 10px;
  }

  .banner-btn {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .banner-note {
    font-size: 10px;
    margin-top: 5px;
  }
}
