main {
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  gap: 50px;
  margin: 20px auto;
}

main b {
  font-weight: 600;
}

main p a {
  text-decoration: underline;
  font-weight: 500;
}

main article {
  width: 70%;
  margin: 30px auto;
}

main article h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  color: rgb(20, 20, 20);
}

main article h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

main article h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

main article img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

main article .tarih {
  display: block;
  font-size: 16px;
  color: rgb(80, 80, 80);
  margin-bottom: 20px;
}

main article p {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.4;
}

main article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

main article ul li {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(50, 50, 50);
}

main aside {
  width: 300px;
  padding: 30px 0;
  background-color: #f9f9f9;
  border-radius: 8px;
}

main aside .yan-baslik {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden
}

main aside a {
  display: block;
  margin-bottom: 15px;
  height: 250px;
  position: relative;
}

main aside a img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: 250px;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: 1;
  border-radius: 20px;
  transition: all 0.2s ease;
}

main aside a:hover img {
  filter: brightness(0.7);
}

main aside a div {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 8px 10px;
  background: linear-gradient(135deg, #f2f2f2, #d6d6d6);
}

main aside a div p {
  font-size: 20px;
  color: rgb(20, 20, 20);
  line-height: 1.4;
  font-weight: 600;
}

main aside a div .yan-tarih {
  display: block;
  font-size: 14px;
  color: rgb(80, 80, 80);
}

@media print {
  header .header-content nav {
      display: none;
  }
  
  main .ilan-giris-con .yan-linkler {
      display: none;
  }
  
  footer {
      display: none;
  }
  
  main {
      width: 100%;
  }
}

@media screen and (max-width:900px) {
  main {
    padding: 0 5%;
    flex-direction: column;
  }

  main article {
    width: 100%;
  }

  main article h1 {
    font-size: 28px;
  }

  main article h2 {
    font-size: 24px;
  }

  main article h3 {
    font-size: 20px;
  }

  main article .tarih {
    font-size: 14px;
  }

  main article p {
    font-size: 16px;
    line-height: 1.4;
  }

  main article ul li {
    font-size: 16px;
    line-height: 1.4;
  }

  main aside {
    width: 100%;
  }

  main aside .yan-baslik {
    font-size: 22px;
  }

  main aside a div p {
    font-size: 16px;
  }

  main aside a div .yan-tarih {
    font-size: 12px;
  }
}