/* =============================
   cp-ceo
============================= */
.cp-ceo {
  padding: 120px 0;
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}

.cp-ceo::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-05) 0%, transparent 70%);
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.cp-ceo__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* label */
.cp-ceo__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 12px;
}

.cp-ceo__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* title */
.cp-ceo__title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

/* layout */
.cp-ceo__layout {
}

.cp-ceo__msg-col {
  padding-top: 8px;
}

/* quote */
.cp-ceo__quote {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 40px 44px;
  margin: 0 0 40px;
  box-shadow: var(--shadow-sm);
}

.cp-ceo__quote p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* body */
.cp-ceo__body {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 2.1;
}

.cp-ceo__body p {
  margin-bottom: 20px;
}

.cp-ceo__body p:last-child {
  margin-bottom: 0;
}

/* tags */
.cp-ceo__tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.cp-ceo__tag {
  background: var(--gold-08);
  border: 1px solid var(--gold-20);
  color: var(--gold-90);
  border-radius: 4px;
  padding: 7px 16px;
  font-size: var(--fs-xs);
}

/* responsive */
@media (max-width: 600px) {
  .cp-ceo {
    padding: 64px 0;
  }

  .cp-ceo__quote {
    padding: 28px 24px;
  }
}