:root {
  --inf-red: #e84b4f;
  --inf-red-dark: #c8343b;
  --inf-black: #34333a;
  --inf-gray-900: #25252a;
  --inf-gray-700: #565861;
  --inf-gray-100: #f2f2f3;
  --inf-gray-050: #f8f8f8;
  --inf-blue: #1f5d88;
  --line: #dedee3;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 46px rgba(37, 37, 42, 0.12);
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--inf-black);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--inf-black);
  color: white;
  padding: 10px 14px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  backdrop-filter: blur(8px);
}

.inf-strip {
  background: var(--inf-black);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
}

.strip-content {
  min-height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand img {
  width: 156px;
  height: auto;
  border-radius: 4px;
}

.brand-title {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.brand-title strong {
  display: block;
  font-size: 1.05rem;
  color: var(--inf-black);
}

.brand-title small {
  display: block;
  color: var(--inf-gray-700);
  margin-top: -3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--inf-gray-900);
  font-weight: 700;
}

.menu a {
  position: relative;
  text-decoration: none;
  font-size: .95rem;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  background: var(--inf-red);
  transition: right .2s ease;
}
.menu a:hover::after { right: 0; }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--inf-black);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  color: white;
  background-image: url("../img/inf0.webp");
  background-size: cover;
  background-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(37,37,42,.75) 0%,
      rgba(37,37,42,.55) 44%,
      rgba(37,37,42,.22) 100%
    ),
    linear-gradient(0deg, rgba(232,75,79,.18), rgba(232,75,79,.02));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: center;
  min-height: 660px;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--inf-red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .78rem;
}
.hero .eyebrow { color: #ffffff; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.055em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--inf-black);
  margin-bottom: 18px;
}

h3 { line-height: 1.2; }

.subtitle {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.22;
  max-width: 770px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 680px;
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--inf-red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(232,75,79,.28);
}
.button.primary:hover { background: var(--inf-red-dark); }

.button.secondary {
  border: 1px solid rgba(255,255,255,.55);
  color: white;
  background: rgba(255,255,255,.08);
}

.hero-card {
  display: grid;
  gap: 9px;
  width: 90%;
  justify-self: end;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  color: var(--inf-black);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--inf-red);
}

.hero-card div {
  padding: 13px;
  border-radius: 12px;
  background: var(--inf-gray-050);
  border: 1px solid var(--line);
}

.hero-card .hero-card-alert {
  background: rgba(232,75,79,.08);
  border-color: rgba(232,75,79,.28);
}

.number {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  color: var(--inf-red);
}

.label {
  display: block;
  margin-top: 5px;
  color: var(--inf-gray-700);
  font-size: .88rem;
}

.section { padding: 90px 0; }
.muted { background: var(--inf-gray-100); }

.two-columns {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.two-columns p,
.section-heading p {
  color: var(--inf-gray-700);
  font-size: 1.05rem;
}

.cards { display: grid; gap: 18px; }
.compact { grid-template-columns: repeat(3, 1fr); }

.card,
.course-card,
.steps article,
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(37,37,42,.07);
}

.card {
  padding: 24px;
  border-top: 4px solid var(--inf-red);
}

.card h3,
.course-card h3,
.steps h3 {
  color: var(--inf-black);
  margin-bottom: 8px;
}

.card p,
.steps p,
.faq p {
  color: var(--inf-gray-700);
  margin-bottom: 0;
}

.photo-break {
  height: min(44vw, 430px);
  min-height: 260px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.photo-break.tall { height: min(50vw, 500px); }
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-break.focus-top img {
  object-position: center 22%;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 40px;
}

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

.pill-grid span {
  padding: 12px 16px;
  border-radius: 4px;
  color: var(--inf-black);
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.course-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px;
  min-height: 190px;
  border-left: 5px solid var(--inf-red);
}

.course-card img,
.professor-placeholder {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 4px solid var(--inf-gray-100);
}

.professor-placeholders {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
}

.course-card img {
  object-fit: cover;
  object-position: center top;
}

.professor-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, var(--inf-gray-100));
  color: var(--inf-gray-700);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.15;
  padding: 10px;
}

.course-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--inf-red);
  font-size: .82rem;
  font-weight: 900;
}

.course-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.course-card p {
  margin-bottom: 0;
  color: var(--inf-gray-700);
  font-size: .94rem;
}

.course-card .teacher {
  color: var(--inf-black);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 8px;
}

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

.steps article {
  padding: 24px;
  border-top: 4px solid var(--inf-red);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--inf-black);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}

.highlight {
  background: linear-gradient(135deg, var(--inf-black), #17171b);
  color: white;
  border-top: 8px solid var(--inf-red);
}
.highlight h2 { color: white; }
.highlight p { color: rgba(255,255,255,.82); }
.highlight .eyebrow { color: #fff; }

.highlight-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.date-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.date-list div {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.date-list strong,
.date-list span { display: block; }

.date-list span {
  margin-top: 8px;
  color: rgba(255,255,255,.8);
}

.faq-wrap { max-width: 920px; }
.faq { display: grid; gap: 12px; }

.faq details {
  padding: 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 900;
  color: var(--inf-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--inf-red);
}

.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 24px 22px; }

.footer {
  padding: 36px 0;
  background: var(--inf-gray-900);
  color: white;
}

.footer img {
  width: 156px;
  background: black;
  border-radius: 4px;
  padding: 8px;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
}

.footer a { color: white; }

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .two-columns,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .compact,
  .steps,
  .date-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { min-height: auto; }
}

@media (max-width: 740px) {
  .strip-content {
    justify-content: center;
    text-align: center;
  }

  .strip-content span:last-child {
    display: none;
  }

  .nav {
    min-height: 78px;
    align-items: center;
  }

  .brand img { width: 126px; }
  .brand-title { display: none; }

  .menu-button { display: inline-flex; }

  .menu {
    display: none;
    position: absolute;
    top: 110px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .menu.is-open { display: flex; }
  .menu a { padding: 10px; }

  .section { padding: 66px 0; }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-grid { padding: 70px 0; }

  .compact,
  .steps,
  .date-list {
    grid-template-columns: 1fr;
  }

  .course-card {
    grid-template-columns: 84px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .course-card img,
  .professor-placeholder {
    width: 84px;
    height: 84px;
  }

  .professor-placeholders {
    gap: 8px;
  }

  .hero-card {
    width: 100%;
  }

  .photo-break {
    min-height: 220px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


.coordinator-card{
    text-align:center;
}

.coordinator-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:1rem;
}

.coordinator-card h3{
    margin-bottom:.4rem;
}

.coordinator-card p{
    margin:0;
}
