/* ========== Aesthetic Unlocked Feed Styling ========== */
.feedzy-rss { margin-top: 1rem; }

.feedzy-rss .rss_item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.feedzy-rss .rss_item h3 a {
  color: #1e98ff; /* AFC blue */
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.feedzy-rss .rss_item h3 a:hover {
  color: #f44708; /* AFC orange */
}

.feedzy-rss .rss_item .rss_item_date {
  font-size: 0.85rem;
  color: #8c8c8c;
}

.feedzy-rss .rss_item .rss_item_desc {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== Onboarding Process (Aesthetic Fit Club) ========== */
.ob-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

.ob-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ob-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card base */
.ob-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ob-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.25rem;
}

.ob-card p {
  margin: 0;
  color: #f6f1e6;
  line-height: 1.5;
}

/* Hover accent */
.ob-card:hover,
.ob-card:focus-within {
  border-color: #f44708;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* Icons */
.ob-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  display: block;
}

.ob-icon .bg {
  fill: rgba(30, 152, 255, 0.08);
}

.ob-icon path,
.ob-icon line,
.ob-icon polyline,
.ob-icon rect {
  stroke: #1e98ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.25s ease, fill 0.25s ease;
}

.ob-card:hover .ob-icon *,
.ob-card:focus-within .ob-icon * {
  stroke: #f44708;
}

.ob-card:hover .ob-icon .bg,
.ob-card:focus-within .ob-icon .bg {
  fill: rgba(244, 71, 8, 0.12);
}

/* Flow arrows (WordPress-safe) */
.ob-grid .ob-card {
  --arrow-size: 10px;
  position: relative;
}

.ob-grid .ob-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: var(--arrow-size) solid transparent;
  border-right: var(--arrow-size) solid transparent;
  border-top: var(--arrow-size) solid #1e98ff;
  transition: border-color 0.25s ease;
}

.ob-grid .ob-card:hover::after,
.ob-grid .ob-card:focus-within::after {
  border-top-color: #f44708;
}

.ob-grid .ob-card:last-child::after {
  display: none;
}

@media (min-width: 768px) {
  .ob-grid .ob-card::after {
    left: auto;
    bottom: auto;
    top: 50%;
    right: -16px;
    transform: translateY(-50%) rotate(-90deg);
  }
  .ob-grid .ob-card:nth-child(3)::after {
    display: none;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .ob-card,
  .ob-icon * {
    transition: none !important;
  }
}