<style>
/* ==========================================
   Outer Module Wrapper
   ========================================== */
.hs-image-card-container {
  width: 100%;
  max-width: 100%; 
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}

/* ==========================================
   The Main Card Frame
   ========================================== */
.hs-image-card {
  position: relative;
  width: 100%;
  border-radius: 40px; 
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 
    0 10px 24px -2px rgba(0, 0, 0, 0.01), 
    0 24px 56px -4px rgba(0, 0, 0, 0.03), 
    0 40px 80px -8px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-image-card:hover {
  transform: none !important;
  box-shadow: 
    0 44px 88px -12px rgba(0, 0, 0, 0.06), 
    0 32px 64px -6px rgba(0, 0, 0, 0.04);
}

/* Enforces card height ratio symmetry */
.hs-card-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000; /* Dark baseline baseline in case image loads slow */
  overflow: hidden;
}

/* NEW: The Blurred Backdrop Layer */
.hs-card-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.8); /* Creates the deep background blur effect */
  transform: scale(1.1); /* Prevents white edges from showing around the blur */
  z-index: 1;
}

/* UPDATED: Crisp Foreground Image Layer */
.hs-card-bg-img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 2; /* Sits on top of the blur */
}

/* ==========================================
   Floating Top Left Pure CSS Badge
   ========================================== */
.hs-floating-badge {
  position: absolute;
  top: 28px; 
  left: 28px;
  background-color: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px; 
  border-radius: 30px; 
  display: flex;
  align-items: center;
  gap: 8px; 
  z-index: 3;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hs-badge-dot {
  width: 6px;
  height: 6px;
  background-color: #E8A33D; 
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hs-badge-text {
  font-family: sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8A33D;
  line-height: 1;
  white-space: nowrap;
}

/* ==========================================
   Floating Bottom Text Banner
   ========================================== */
.hs-floating-banner {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 22px; 
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 3;
}

.hs-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
}

.hs-banner-label {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #E8A33D;
}

.hs-banner-title {
  font-family: sans-serif;
  font-size: 13px; 
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.3;
}

.hs-banner-icon-slot {
  width: 44px; 
  height: 44px;
  background-color: transparent; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-banner-action-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ==========================================
   Responsive Mobile Viewport Breaks 
   ========================================== */
@media (max-width: 767px) {
  .hs-image-card {
    border-radius: 24px;
  }

  .hs-floating-badge {
    top: 16px; 
    left: 16px;
    padding: 6px 12px;
  }

  .hs-floating-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 12px 16px; 
    border-radius: 16px;
  }

  .hs-banner-label {
    font-size: 11px;
  }
  
  .hs-banner-title {
    font-size: 12px;
  }

  .hs-banner-icon-slot {
    width: 36px; 
    height: 36px;
  }
}
</style>