

.wc-widget-section {
  margin: 0 auto 1.5rem auto; 
  padding: 1.8rem;
  border-radius: 12px;
  background: rgba(248, 231, 192, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  max-width: 900px;      
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.wc-widget {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.wc-tag-top {
  display: block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgb(218,195,153);
  margin-bottom: 0.4rem;
}

.wc-widget {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #3A2A1A;
  margin: 0 0 0.5rem 8px;
  line-height: 1.2;
}

.wc-intro {
  font-size: 14px;
  color: #3A2A1A;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  padding: 1rem 1.5rem;
  background: rgba(248,231,192,0.45);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Timeline */
.wc-timeline {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  max-width: 700px;
}

.wc-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  flex-shrink: 0;
}

.wc-tl-dot {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1.5px solid rgba(218,195,153,0.5);
  background: rgba(248,231,192,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.22s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.wc-tl-item.wc-active .wc-tl-dot {
  background: rgba(226, 173, 49, 0.7);
  border-color: rgb(218,195,153);
  box-shadow: 0 0 0 4px rgba(218,195,153,0.25);
}

.wc-tl-item:hover:not(.wc-active) .wc-tl-dot {
  background: rgba(248,231,192,0.4);
  transform: scale(1.08);
}

.wc-tl-label {
  font-size: 16px;
  color: rgba(59, 42, 14, 0.8);
  text-align: center;
  transition: color 0.2s;
}

.wc-tl-item.wc-active .wc-tl-label {
  color: #997d1f;
  font-weight: bold;
}

.wc-tl-line {
  flex: 1;
  height: 1px;
  background: rgba(87, 64, 26, 0.8);
  margin-bottom: 24px;
}


/* Card */

.wc-card {
  max-width: 860px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: opacity 0.2s;
  margin-bottom: 1.8rem;
  border-radius: 12px;
    padding: 1.8rem;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.65),
        0 5px 15px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);}


.wc-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

.wc-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #2a1f14;
  margin-bottom: 0.1rem;
}

.wc-card-chin {
  font-size: 14px;
  color: #583f1d;
  margin-bottom: 0.9rem;
}

.wc-card-desc {
  margin-bottom: 1rem;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  max-width: none !important;
  font-size: 16px;
}

.wc-card-props {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wc-prop {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3A2A1A;
}

.wc-prop-icon {
  font-size: 15px;
  flex-shrink: 0;
}

/* Right column: figure + bars */
.wc-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 140px;
}

.wc-figure-wrap {
  display: flex;
  justify-content: center;
}

.wc-levels {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-level-label {
  font-size: 11px;
  color: #7A5A30;
  margin-bottom: 3px;
}

.wc-level-bar {
  height: 4px;
  background: rgba(122,90,48,0.25);
  border-radius: 2px;
  overflow: hidden;
}

.wc-level-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s ease;
}


.wc-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.wc-figure-wrap {
  display: flex;
  justify-content: center;
  height: 220px;
}


/* Responsive */
@media (max-width: 768px) {
  .wc-widget-section {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .wc-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .wc-card-right {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .wc-levels {
    flex: 1;
    min-width: 140px;
  }
  .wc-tl-dot {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .wc-tl-label {
    font-size: 15px;
  }
}
