:root {
  --crro-primary: #f9193e;    /* Coupang Signature Red */
  --crro-bg: #f8fafc;
  --crro-border: #e2e8f0;
  --crro-text-dark: #1e293b;
  --crro-text-gray: #64748b;
  --crro-success: #059669;
}

.crro-box {
  border: 1px solid var(--crro-border);
  border-radius: 20px;
  padding: 24px;
  background: var(--crro-bg);
  margin: 32px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.crro-head {
  margin-bottom: 24px;
}

.crro-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  font-size: 21px;
  color: var(--crro-text-dark);
}

.crro-sub {
  color: var(--crro-text-gray);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.crro-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crro-item {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  align-items: stretch;
}

.crro-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -5px rgba(0,0,0,0.1);
  border-color: var(--crro-primary);
}

/* Left Aside column (Thumb + Badge) */
.crro-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 96px;
  flex: 0 0 96px;
  align-items: center;
}

.crro-thumb {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.crro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crro-badge-mini {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 4px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  white-space: nowrap;
  letter-spacing: -0.05em;
  width: 100%;
  text-align: center;
}

/* Right Info Section */
.crro-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.crro-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: var(--crro-text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  word-break: break-all;
}

.crro-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.crro-label {
  display: inline-flex;
  font-weight: 850;
  font-size: 15px;
  color: var(--crro-primary);
  white-space: nowrap;
}

.crro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: auto;
  width: fit-content;
  transition: all 0.2s ease;
}

.crro-item:hover .crro-btn {
  background: var(--crro-primary);
}

/* Skeleton UI Refined for new layout */
.crro-skeleton {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  height: 132px;
  position: relative;
  overflow: hidden;
}

.crro-skeleton::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0, rgba(0,0,0,0.04) 50%, rgba(255,255,255,0) 100%);
  animation: crro-shimmer 1.8s infinite;
}

@keyframes crro-shimmer {
  100% { transform: translateX(100%); }
}

/* Mobile Responsive */
@media (max-width: 500px) {
  .crro-box { padding: 18px; margin: 24px 0; }
  .crro-item { gap: 16px; padding: 14px; }
  .crro-aside { width: 80px; flex: 0 0 80px; }
  .crro-thumb { width: 80px; height: 80px; }
  .crro-name { font-size: 14px; margin-bottom: 10px; }
  .crro-label { font-size: 14px; }
  .crro-btn { font-size: 12px; padding: 8px 12px; }
  .crro-badge-mini { font-size: 9px; }
}

/* Very Narrow Phone */
@media (max-width: 340px) {
  .crro-item { flex-direction: row; }
  .crro-aside { width: 64px; flex: 0 0 64px; }
  .crro-thumb { width: 64px; height: 64px; }
  .crro-badge-mini { display: none; } /* 공간 부족 시 숨김 */
}
