/* ===== Mid Showcase Banner ===== */
.mid-banner-section {
  padding: 0 0 44px;
  background: #f8fafc;
}

.mid-banner-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.mid-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 215px;
  padding: 0 40px 0 44px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.mid-banner:hover {
  border-color: #dde4ec;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.mid-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #FF6600;
  border-radius: 10px 0 0 10px;
}

.mid-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.mid-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
  background: #f0fae8;
  color: #5a9e32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.mid-banner-tag svg {
  flex-shrink: 0;
}

.mid-banner-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.mid-banner-title strong {
  font-weight: 700;
  color: #FF6600;
}

.mid-banner-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #718096;
  line-height: 1.5;
}

.mid-banner-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #FF6600;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.mid-banner-actions {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mid-banner:hover .mid-banner-cta {
  background: #E55A00;
}

.mid-banner-cta:active {
  transform: scale(0.98);
}

.mid-banner-decor {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.mid-banner-decor::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
}

.mid-banner-decor::after {
  content: '';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(146, 200, 102, 0.25);
  background: rgba(146, 200, 102, 0.06);
}

.mid-banner-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ed;
  border: 1px solid #ffd4b8;
  border-radius: 16px;
  color: #FF6600;
}

/* ----- Responsive ----- */
@media (max-width: 1292px) {
  .mid-banner-container {
    padding: 0 16px;
  }
}

@media (max-width: 900px) {
  .mid-banner {
    height: auto;
    min-height: 180px;
    padding: 28px 28px 28px 36px;
    flex-wrap: wrap;
  }

  .mid-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .mid-banner-decor {
    width: 30%;
  }
}

@media (max-width: 640px) {
  .mid-banner-section {
    padding: 0 0 32px;
  }

  .mid-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px 24px 28px;
    min-height: unset;
  }

  .mid-banner-title {
    font-size: 1.125rem;
  }

  .mid-banner-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }

  .mid-banner-icon {
    display: none;
  }

  .mid-banner-cta {
    width: 100%;
    justify-content: center;
  }

  .mid-banner-decor {
    display: none;
  }
}
