@import url(
  "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap"
);

:root {
  --agenda-primary: #159bde;
  --agenda-primary-dark: #0878b6;
  --agenda-primary-light: #eaf8ff;
  --agenda-navy: #10253f;
  --agenda-text: #5c6979;
  --agenda-border: #dcecf5;
  --agenda-white: #ffffff;
  --agenda-background: #f5fbfe;
  --agenda-shadow: 0 20px 55px rgba(29, 91, 126, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.agenda-section {
  position: relative;
  overflow: hidden;
  padding: 75px 24px;
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(21, 155, 222, 0.1),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fcff 55%,
      #eef9fe 100%
    );
  font-family: "Inter", sans-serif;
}

.agenda-decoration {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.agenda-decoration-one {
  top: -170px;
  right: -150px;
  width: 430px;
  height: 430px;
  border: 68px solid rgba(21, 155, 222, 0.05);
}

.agenda-decoration-two {
  bottom: -180px;
  left: -160px;
  width: 380px;
  height: 380px;
  background: rgba(21, 155, 222, 0.045);
}

.agenda-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.agenda-header {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.agenda-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--agenda-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.agenda-label::before {
  content: "";
  width: 35px;
  height: 2px;
  border-radius: 20px;
  background: var(--agenda-primary);
}

.agenda-header h2 {
  color: var(--agenda-navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -2.7px;
}

.agenda-header h2 span {
  display: block;
  color: var(--agenda-primary);
}

.agenda-header > p {
  max-width: 650px;
  padding-bottom: 5px;
  color: var(--agenda-text);
  font-size: 17px;
  line-height: 1.85;
}

.agenda-wrapper {
  overflow: hidden;
  border: 1px solid var(--agenda-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--agenda-shadow);
  backdrop-filter: blur(12px);
}

.agenda-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 18px;
  background:
    linear-gradient(
      135deg,
      var(--agenda-primary-dark),
      var(--agenda-primary)
    );
  color: var(--agenda-white);
}

.agenda-topbar-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agenda-calendar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.agenda-calendar-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--agenda-white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-topbar-title div,
.agenda-topbar-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.agenda-topbar-title span,
.agenda-topbar-time span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.agenda-topbar-title strong,
.agenda-topbar-time strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.agenda-topbar-time {
  text-align: right;
}

.agenda-list {
  padding: 10px 22px 23px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 155px 30px 1fr;
  gap: 20px;
  min-height: 125px;
}

.agenda-time {
  padding-top: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  color: var(--agenda-navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.time-divider {
  width: 13px;
  height: 1px;
  margin-top: 9px;
  background: rgba(16, 37, 63, 0.35);
}

.time-end {
  color: var(--agenda-text);
  font-weight: 500;
}

.agenda-timeline {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin-top: 37px;
  border: 5px solid var(--agenda-white);
  border-radius: 50%;
  background: var(--agenda-primary);
  box-shadow:
    0 0 0 2px var(--agenda-primary),
    0 6px 16px rgba(21, 155, 222, 0.3);
}

.timeline-line {
  position: absolute;
  top: 56px;
  bottom: -37px;
  width: 2px;
  background:
    linear-gradient(
      to bottom,
      var(--agenda-primary),
      rgba(21, 155, 222, 0.15)
    );
}

.agenda-content {
  position: relative;
  min-height: 135px;
  margin: 15px 0;
  padding: 26px 80px 26px 84px;
  display: flex;
  align-items: center;
  border: 1px solid var(--agenda-border);
  border-radius: 19px;
  background: var(--agenda-white);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.agenda-content:hover {
  transform: translateX(7px);
  border-color: rgba(21, 155, 222, 0.42);
  box-shadow: 0 18px 38px rgba(35, 99, 135, 0.1);
}

.agenda-number {
  position: absolute;
  top: 17px;
  right: 21px;
  color: rgba(16, 37, 63, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}

.agenda-icon {
  position: absolute;
  left: 22px;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 155, 222, 0.2);
  border-radius: 14px;
  background: var(--agenda-primary-light);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.agenda-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--agenda-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agenda-content:hover .agenda-icon {
  transform: rotate(-5deg) scale(1.05);
  background: var(--agenda-primary);
}

.agenda-content:hover .agenda-icon svg {
  stroke: var(--agenda-white);
}

.agenda-category {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--agenda-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.agenda-text h3 {
  margin-bottom: 8px;
  color: var(--agenda-navy);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.agenda-text p {
  max-width: 670px;
  color: var(--agenda-text);
  font-size: 14px;
  line-height: 1.65;
}

.agenda-item-featured .agenda-content {
  border-color: transparent;
  background:
    linear-gradient(
      135deg,
      var(--agenda-primary-dark),
      var(--agenda-primary)
    );
  box-shadow: 0 19px 42px rgba(21, 155, 222, 0.22);
}

.agenda-item-featured .agenda-content:hover {
  transform: translateX(7px) translateY(-3px);
  box-shadow: 0 24px 50px rgba(21, 155, 222, 0.29);
}

.agenda-item-featured .agenda-number {
  color: rgba(255, 255, 255, 0.13);
}

.agenda-item-featured .agenda-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
}

.agenda-item-featured .agenda-icon svg {
  stroke: var(--agenda-white);
}

.agenda-item-featured .agenda-category {
  color: #d8f3ff;
}

.agenda-item-featured .agenda-text h3 {
  color: var(--agenda-white);
}

.agenda-item-featured .agenda-text p {
  color: rgba(255, 255, 255, 0.83);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 65px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--agenda-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agenda-item-last {
  min-height: 145px;
}

@media (max-width: 1024px) {
  .agenda-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .agenda-header > p {
    max-width: 760px;
  }

  .agenda-item {
    grid-template-columns: 155px 30px 1fr;
    gap: 15px;
  }

  .agenda-content {
    padding-right: 55px;
  }
}

@media (max-width: 768px) {
  .agenda-section {
    padding: 80px 20px;
  }

  .agenda-header {
    margin-bottom: 42px;
  }

  .agenda-header h2 {
    font-size: 47px;
    letter-spacing: -1.8px;
  }

  .agenda-header > p {
    font-size: 15.5px;
  }

  .agenda-topbar {
    align-items: flex-start;
    padding: 22px;
  }

  .agenda-topbar-time {
    display: none;
  }

  .agenda-list {
    padding: 16px 20px 24px;
  }

  .agenda-item {
    grid-template-columns: 28px 1fr;
    gap: 13px;
    min-height: auto;
  }

  .agenda-time {
    grid-column: 2;
    grid-row: 1;
    padding: 22px 0 0;
    justify-content: flex-start;
    font-size: 13px;
  }

  .agenda-timeline {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .timeline-dot {
    margin-top: 25px;
  }

  .timeline-line {
    top: 44px;
    bottom: -25px;
  }

  .agenda-content {
    grid-column: 2;
    grid-row: 2;
    min-height: auto;
    margin: 8px 0 17px;
    padding: 73px 22px 24px;
    align-items: flex-start;
  }

  .agenda-icon {
    top: 17px;
    left: 20px;
  }

  .agenda-number {
    top: 18px;
    right: 19px;
  }

  .featured-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .agenda-section {
    padding: 65px 15px;
  }

  .agenda-header h2 {
    font-size: 39px;
  }

  .agenda-wrapper {
    border-radius: 21px;
  }

  .agenda-topbar {
    padding: 19px;
  }

  .agenda-calendar-icon {
    width: 43px;
    height: 43px;
  }

  .agenda-topbar-title strong {
    font-size: 15px;
  }

  .agenda-list {
    padding: 14px 14px 20px;
  }

  .agenda-item {
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }

  .agenda-time {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
  }

  .agenda-content {
    padding: 68px 18px 22px;
    border-radius: 16px;
  }

  .agenda-icon {
    left: 17px;
    width: 42px;
    height: 42px;
  }

  .agenda-number {
    font-size: 30px;
  }

  .agenda-text h3 {
    font-size: 18px;
  }

  .agenda-text p {
    font-size: 13.5px;
  }
}