section {
  padding: 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

.section-title em {
  color: var(--accent2);
  font-style: normal;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  column-gap: 28px;
  row-gap: 10px;
  align-items: start;
}

.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}

.about-photo-mobile { display: none; }

.photo-placeholder {
  width: 140px;
  height: 170px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  overflow: hidden;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.6);
  transform-origin: center top;
  border-radius: 8px;
}

.about-text {
  align-self: center;
}

.inline-link {
  color: var(--accent2);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.35);
}
.inline-link:hover { border-bottom-color: var(--accent2); }

.about-text p {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.65;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.about-text p em     { color: var(--accent2); font-style: italic; }

.about-links {
  grid-column: 2 / -1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}

.telecom-badge {
  background: rgba(91,79,232,0.08);
  border: 1px solid rgba(91, 79, 232, 0.28);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.telecom-img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
}
.telecom-info strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}
.telecom-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.pub-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pub-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.pub-item:hover {
  background: var(--bg-card);
  border-color: var(--border);
}
.pub-item:hover .pub-arrow { opacity: 1; }

.pub-date {
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 3px;
  white-space: nowrap;
}

.pub-body { display: flex; flex-direction: column; gap: 6px; }

.pub-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.pub-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.pub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.pub-arrow {
  font-size: 1rem;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.15s;
  padding-top: 2px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
footer p   { font-size: 0.75rem; color: var(--muted); }
footer a   { color: var(--accent); text-decoration: none; }

@media (max-width: 900px) {
  section { padding: 36px 24px; }
  .about-grid { display: block; }
  .about-photo { display: none; }
  .about-photo-mobile {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  .photo-placeholder { width: 140px; height: 170px; }

  .about-links { justify-content: center; margin-top: 20px; }
  .about-stats { display: none; }
  .telecom-badge { width: fit-content; margin: 0 auto; }
  footer { flex-direction: column; gap: 8px; text-align: center; padding: 18px 24px; }
}
