/*
Theme Name: Kadence Child
Template: kadence
*/

* ============================================
   ARCHIVE — CARD STYLES
   ============================================ */

/* CARD BASE */
article.loop-entry {
  background-color: #1a1a1a;
  border: 1px solid #1d1d1d;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  padding: 20px 20px;
}

article.loop-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.25);
}

.category-style-pill > a {
  font-size: 10px;
}

/* POST TITLE */
article.loop-entry h2.entry-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

article.loop-entry h2.entry-title a:hover {
  color: #1e90ff;
}

/* META (DATE) */
article.loop-entry .entry-meta {
  color: #666666;
}

/* EXCERPT */
article.loop-entry .entry-summary,
article.loop-entry .entry-summary p,
.single-content {
  color: #aaaaaa;
}

/* READ MORE */
.more-link-wrap {
  color: #1e90ff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 6px 6px;
  z-index: 3;
}

.more-link-wrap p a:hover,
.more-link-wrap a:hover {
  color: #666666 !important;
}

*
  ============================================
  BLOG
  ============================================
  */
  .single-post
  .s.entry-content-wrap {
  width: 100% !important;
  max-width: 1100px !important;
}

.single-post .category-style-pill a {
  font-size: 14px !important;
}

.single-post .entry-meta.entry-meta-divider-dot {
  color: #1e90ff;
}

/* REFERENCES */

.ref-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  list-style: none !important;
  counter-reset: ref-counter;
}

.ref-list li {
  counter-increment: ref-counter;
}

.ref-list li::before {
  content: counter(ref-counter) ".";
  margin-right: 0.5rem;
  color: #cccccc;
  font-weight: 600;
}
.ref-list li {
  display: block !important;
  margin-bottom: 15px;
}

.ref-author {
  font-weight: 500;
}

.ref-date {
  color: #5a5a5a;
  font-weight: 400;
}

.ref-title {
  color: #ffffff;
  font-style: italic;
}

.ref-detail {
  color: #5a5a5a;
  font-size: 0.9em;
}

.ref-link a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.ref-link a:hover {
  text-decoration: underline;
}

/* STAT CARDS */
.stat-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: rgba(30, 144, 255, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  color: #ffffff;
}

.stat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.7);
  margin-bottom: 0.75rem;
}

.stat-headline {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.bar-label {
  font-size: 12px;
  color: #888888;
  width: 110px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
}

.bar-blue {
  background: #1e90ff;
}
.bar-dim {
  background: rgba(255, 255, 255, 0.2);
}

.bar-val {
  font-size: 12px;
  color: #aaaaaa;
  width: 52px;
  text-align: right;
  flex-shrink: 0;
}

.bar-accent {
  color: #1e90ff;
}

.stat-divider {
  border: none;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin: 1rem 0;
}

.stat-note {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
}

.stat-source {
  font-size: 10px;
  color: rgba(255, 215, 0, 0.3);
  margin-top: 0.75rem;
}

/* FUNNEL */
.funnel-step {
  margin-bottom: 0.5rem;
}

.funnel-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888888;
  margin-bottom: 3px;
}

.funnel-track {
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.funnel-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

.stat-card-float-right {
  float: right;
  width: 280px;
  margin: 0 0 1.5rem 1.5rem;
}

.stat-card-float-left {
  float: left;
  width: 280px;
  margin: 0 0 1.5rem 1.5rem;
}

.stat-card-float .stat-headline {
  font-size: 12px;
}

.stat-card-float .bar-label {
  width: 80px;
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
}

@media (max-width: 767px) {

  .stat-bar .kt-row-column-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .stat-bar .wp-block-kadence-column {
    min-width: 0;
    padding: 12px 6px;
    text-align: center;
  }

  /* Force the column's inner content to stack vertically.
     This targets the inner col AND any intermediate wrapper so the
     icon can't sit beside the text. */
  .stat-bar .kt-inside-inner-col,
  .stat-bar .kt-inside-inner-col > * {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px;
    width: 100%;
  }

  .stat-bar .kt-svg-icon-wrap svg {
    width: 24px

@media (max-width: 600px) {
}

@media (max-width: 479px) {
}
