/* ===============================
   UNIFIED STATUS CARD (COMPACT HORIZONTAL)
=============================== */
.home-status-strip.wide-layout {
  margin: 16px 0 28px;
  width: 100%;
}

.status-card-unified {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.status-section {
  position: relative;
  padding: 24px 28px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px; /* Mucho más bajo */
}

.status-section:hover {
  background: rgba(0, 0, 0, 0.005);
}

.rewards-section {
  background: #fffcf9;
  border-left: 1px solid rgba(0, 0, 0, 0.03);
}

/* Layout Horizontal Interno */
.section-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  z-index: 2;
}

.section-info {
  flex: 1;
}

/* Iconos de fondo */
.bg-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  color: currentColor;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

/* Accent Bars */
.accent-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 0 0 4px 4px;
}

.accent-blue { background: #0097ff; }
.accent-orange { background: #ff5e00; }

/* Typography */
.status-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.badge-new {
  background: #0097ff;
  color: #ffffff;
  font-size: 7.5px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 8px;
  text-transform: uppercase;
}

.status-eyebrow {
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #a08c83;
}

.status-number {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gallery-section .status-number { color: #0097ff; }
.rewards-section .status-number { color: #ff5e00; }

.status-label {
  font-size: 11px;
  font-weight: 800;
  color: #1a1513;
  margin-top: 2px;
}

.status-subtext {
  font-size: 10px;
  color: #8b766a;
  line-height: 1.3;
  margin-top: 10px;
  max-width: 240px;
}

.highlight-blue { color: #0097ff; font-weight: 700; }

/* Buttons */
.status-btn {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-blue { background: #0097ff; box-shadow: 0 4px 10px rgba(0, 151, 255, 0.15); }
.btn-orange { background: #ff5e00; box-shadow: 0 4px 10px rgba(255, 94, 0, 0.15); }

.status-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .status-card-unified { grid-template-columns: 1fr; }
  .rewards-section { border-left: none; border-top: 1px solid rgba(0, 0, 0, 0.03); }
  .section-layout { flex-direction: row; text-align: left; }
}

@media (max-width: 500px) {
  .section-layout { flex-direction: column; align-items: flex-start; gap: 12px; }
  .status-btn { width: 100%; text-align: center; }
}