/* ═══════════════════════════════════════════
   ADDITIONS.CSS — Extended styles for portfolio
   ═══════════════════════════════════════════ */

/* ═══ GOLD / SILVER STAT NUMBERS ═══ */
.stat-num.gold {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.silver {
  background: linear-gradient(135deg, #c0c0c0, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ GOLD / SILVER ACHIEVEMENT CARDS ═══ */
.ach-gold {
  border-color: rgba(255, 215, 0, .25) !important;
  background: linear-gradient(145deg, rgba(255, 215, 0, .04), var(--card));
}

.ach-gold::before {
  background: linear-gradient(90deg, transparent, #ffd700, transparent) !important;
  opacity: .6 !important;
}

.ach-gold .ach-org {
  color: #ffd700;
}

.ach-silver {
  border-color: rgba(192, 192, 192, .25) !important;
  background: linear-gradient(145deg, rgba(192, 192, 192, .04), var(--card));
}

.ach-silver::before {
  background: linear-gradient(90deg, transparent, #c0c0c0, transparent) !important;
  opacity: .6 !important;
}

/* ═══ HERO IMAGE SIZING ═══ */
.hero-image-wrap {
  flex: 0 0 420px !important;
  aspect-ratio: 3/4 !important;
}

/* ═══ ORGANIC VISION V2 LAYOUT ═══ */
.ov-layout-v2 {
  margin-top: 64px;
}

.ov-layout-v2 .ov-card {
  background: linear-gradient(145deg, rgba(16, 185, 129, .06) 0%, rgba(34, 211, 238, .04) 50%, transparent 100%);
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.ov-layout-v2 .ov-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(16, 185, 129, .08), transparent 70%);
  pointer-events: none;
}

.ov-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ov-services-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ov-services-col .ov-svc {
  background: rgba(16, 185, 129, .04);
  border: 1px solid rgba(16, 185, 129, .12);
  border-radius: 9px;
  padding: 16px;
}

.ov-highlights-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ov-highlights-row .ov-hi {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .2s;
}

.ov-highlights-row .ov-hi:hover {
  border-color: rgba(16, 185, 129, .25);
  transform: translateY(-3px);
}

/* ═══ TEAM HEADER WITH LOGO ═══ */
.team-header-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 0;
}

.team-logo {
  width: auto;
  height: 110px;
  border-radius: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ═══ TEAM SECTION ═══ */
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 64px;
}

.team-intro p {
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: .97rem;
  font-weight: 300;
}

.team-intro p strong {
  color: var(--text);
  font-weight: 500;
}

.team-intro p .hl {
  color: var(--cyan);
  font-weight: 500;
}

.team-achievements {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-ach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all .22s;
}

.team-ach-card.gold-border {
  border-color: rgba(255, 215, 0, .2);
  background: linear-gradient(145deg, rgba(255, 215, 0, .03), var(--card));
}

.team-ach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  border-color: rgba(34, 211, 238, .2);
}

.team-ach-medal {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.team-ach-comp {
  font-family: 'Unbounded', sans-serif;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 6px;
}

.team-ach-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.team-ach-desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 10px;
}

.team-ach-org {
  font-size: .68rem;
  color: var(--border2);
  font-weight: 500;
}

/* ═══ LINKEDIN POST CARDS ═══ */
.linkedin-section {
  margin-top: 20px;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.li-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 20px;
  text-decoration: none;
  transition: all .22s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.li-card:hover {
  border-color: rgba(10, 102, 194, .4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.li-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.li-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.li-label {
  font-family: 'Unbounded', sans-serif;
  font-size: .56rem;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: .06em;
}

.li-title {
  font-size: .78rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
}

.li-cta {
  font-family: 'Unbounded', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  color: #0a66c2;
  letter-spacing: .04em;
}

.li-card:hover .li-cta {
  color: #67b0f4;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .linkedin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ov-highlights-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ov-card-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-image-wrap {
    flex: 0 0 340px !important;
  }
}

@media (max-width: 900px) {
  .team-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .linkedin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ov-highlights-row {
    grid-template-columns: 1fr 1fr;
  }

  .ov-card-top {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    flex: 0 0 auto !important;
    width: 220px !important;
    aspect-ratio: 1/1 !important;
  }

  .team-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .team-logo {
    height: 80px;
  }
}

@media (max-width: 640px) {
  .linkedin-grid {
    grid-template-columns: 1fr;
  }

  .ov-highlights-row {
    grid-template-columns: 1fr;
  }

  .ov-layout-v2 .ov-card {
    padding: 24px;
  }
}
