@import url("/?originalUrl=https%3A%2F%2Ffonts.googleapis.com%2Fcss2%3Ffamily%3DSpace%2BGrotesk%3Awght%40400%3B500%3B600%3B700%26family%3DManrope%3Awght%40400%3B500%3B600%26display%3Dswap");

:root {
  --bg: #f6f8fb;
  --bg-soft: #eef2f7;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #1f2a44;
  --muted: #5b6b80;
  --accent: #2f7ae5;
  --accent-warm: #e7a63f;
  --shadow: 0 16px 45px rgba(22, 34, 60, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 122, 229, 0.1), transparent 26%),
    radial-gradient(circle at 78% 8%, rgba(231, 166, 63, 0.12), transparent 22%),
    linear-gradient(140deg, #f9fbff 0%, #f5f7fb 38%, #eef2f7 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", "Lato", sans-serif;
  line-height: 1.7;
  display: flex;
  justify-content: center;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: #174da6;
  opacity: 0.9;
}

strong {
  color: var(--text);
  font-weight: 700;
}

.page {
  width: min(1120px, 96vw);
  padding: 56px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 32px 36px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(47, 122, 229, 0.12), transparent 45%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e9f0fb;
  color: #2f5ba0;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6ea9ff);
  box-shadow: 0 0 0 6px rgba(47, 122, 229, 0.14);
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__summary {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

.hero__meta {
  margin: 4px 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f0f4fa;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #6ea9ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(47, 122, 229, 0.25);
}

.btn.ghost {
  background: #f2f5fa;
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.hero__photo {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.photo-frame {
  position: relative;
  width: min(260px, 88vw);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dbe3ef;
  background: radial-gradient(circle at 30% 30%, rgba(47, 122, 229, 0.12), transparent 50%), #e9eef7;
  box-shadow: 0 18px 50px rgba(22, 34, 60, 0.12);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(0, 0, 0, 0.06));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.photo-caption {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.section-card {
  margin-top: 30px;
  padding: 24px 26px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.heading-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 122, 229, 0.5), transparent);
}

.section-card p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-note {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #6a7b93;
}

.pub-group {
  margin-bottom: 18px;
}

.pub-group-title {
  margin: 6px 0 10px;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.plain-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.plain-list li {
  line-height: 1.6;
}

.inline-tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-tags li {
  padding: 7px 10px;
  background: #f1f4f9;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
}

.hero__actions .btn {
  flex-wrap: wrap;
}

.pub-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pub-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.pub-row:hover {
  border-color: #ccd6e4;
  box-shadow: 0 14px 40px rgba(22, 34, 60, 0.12);
}

.pub-media {
  width: 32%;
  min-width: 220px;
  max-width: 320px;
  height: 190px;
  background: radial-gradient(circle at 20% 20%, rgba(47, 122, 229, 0.16), transparent 50%), #e8eef7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.pub-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pub-placeholder {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 36px 16px;
  text-align: center;
}

.pub-body {
  flex: 1;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.pub-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #14213d;
  line-height: 1.4;
}

.pub-authors {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pub-conference {
  font-style: normal;
  color: #1f2a44;
  font-size: 14px;
}

.pub-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 10px;
  background: rgba(231, 166, 63, 0.14);
  color: #b57712;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 8px;
}

.pub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pub-links a {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 9px;
  background: #f1f4f9;
  border: 1px solid var(--border);
}

.footer {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  padding: 0 4px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .hero__photo {
    order: -1;
  }

  .photo-frame {
    width: min(220px, 80vw);
  }

  .pub-row {
    flex-direction: column;
  }

  .pub-media {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 42px 0 60px;
  }

  .hero__actions {
    width: 100%;
  }

  .btn {
    flex: 1;
    justify-content: center;
  }
}
