/* DC hero banner (custom) */
.dc-hero-banner-layout {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 30;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .dc-hero-banner-layout {
    position: absolute;
    margin-top: 0;
    right: 40px;
    bottom: 100px;
    width: auto;
    justify-content: flex-end;
  }
}

.dc-inline-widget-fixed {
  text-decoration: none;
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.dc-inline-widget-fixed:hover {
  transform: translateY(-3px);
}

.dc-inline-inner-fixed {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.dc-inline-img-fixed {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 12px;
}

.dc-inline-img-fixed img {
  width: 100%;
  height: auto;
}

.dc-inline-text-fixed {
  flex: 1;
  min-width: 0;
}

.dc-inline-sub-fixed {
  margin: 0 0 2px 0;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  line-height: 1.2;
}

.dc-inline-main-fixed {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ea580c;
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.2;
  flex-wrap: wrap;
  gap: 4px;
}

.dc-inline-arrow-fixed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #ea580c;
  border-radius: 50%;
  margin-left: 6px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.dc-inline-arrow-fixed::after {
  content: '';
  width: 4px;
  height: 4px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-left: -1px;
}

.dc-inline-widget-fixed:hover .dc-inline-arrow-fixed {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}
