/* ================= Base ================= */

body {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  margin: 0;
  padding: 40px;
  color: #111;
  background: #fff;
}

.hero {
  max-width: 900px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 8px;
}

.hero p {
  font-size: 18px;
  color: #555;
}

/* ================= Slider ================= */

.slider-container {
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
}

/* Hide scrollbar but keep scroll functionality */
.slider {
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
}

.slider::-webkit-scrollbar {
  display: none;                  /* Chrome/Safari */
}


/* ================= Blog cards ================= */

.slide {
  min-width: 280px;
  max-width: 280px;
  height: 180px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 20px;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide h3 {
  margin: 0;
  font-size: 18px;
}

.slide p {
  font-size: 14px;
  color: #444;
}

.slide a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}

/* ================= Arrow card ================= */

/* ================= Arrow card ================= */

.arrow-slide {
  min-width: 280px;
  max-width: 280px;
  height: 180px;

  border: 1px dashed #ddd;
  border-radius: 14px;
  background: #fafafa;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  padding: 24px;
  text-align: left;
}

.arrow-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #111;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 500;
  color: #111;
  text-decoration: none;

  flex-shrink: 0;
  transition: all 0.25s ease;
}

.arrow-btn:hover {
  background: #111;
  color: #fff;
  transform: scale(1.05);
}

.arrow-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.arrow-text span {
  font-size: 14px;
  color: #666;
}
