.headernav a[aria-current="page"]{
  color: black;
  text-decoration: underline
}

main {
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.blog {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.blogpost {
  display: flex;
  width: 70%;
  background-color: white;
  text-align: left;
  text-indent: 0;
  padding: 30px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  overflow-y: auto;
}
    .preview-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 32px;
      background: #D3E5F0;
      border-radius: 16px;
      padding: 32px;
      width: 820px;
      min-height: 400px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
      box-sizing: border-box;
}
    .preview-card img {
      width: 300px;
      height: 360px;
      flex-shrink: 0;
      object-fit: cover;
      border-radius: 12px;
      margin: 0;
}
    .preview-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
}
    .preview-card h3 {
      margin: 0 0 14px 0;
      font-size: 1.5rem;
      color: #111111;
      line-height: 1.35;
}
    .preview-card p {
      margin: 0 0 24px 0;
      font-size: 1.07rem;
      color: #555555;
      line-height: 1.6;
}
    .preview-card .read-btn {
      display: inline-block;
      padding: 12px 24px;
      background-color: white;
      color: black;
      text-decoration: none;
      border-radius: 24px;
      font-size: 0.9rem;
      font-weight: bold;
      transition: opacity 0.2s;
}
    .preview-card .read-btn:hover {
      background-color: black;
      color: white
}

.blogside {
  display: flex;
  background-color: white;
  width: 30%;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}
    .carousel-viewport.vertical {
      height: auto;
      justify-content: center;
}
    .carousel-viewport.vertical .carousel-track {
      flex-direction: column;
      overflow-x: hidden;
      overflow-y: auto;
      height: 100%;
}
    .card-vertical {
      min-width: 280px;
      max-width: 280px;
      height: 210px;
      background: #f0f0f0;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s;
}
    .card-vertical:hover {
      border: 1px solid black;
}
    .card-vertical img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      background-color: #eee;
      filter: saturate(.7);
}

 