@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
html,
body {
  width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

.main-heading {
  font-size: 50px;
  line-height: 58px;
}
@media screen and (max-width: 768px) {
  .main-heading {
    font-size: 30px;
    line-height: 38px;
    margin-top: 20px;
  }
}

.big-heading {
  font-size: 70px;
  line-height: 82px;
}

.main-paragrafh {
  font-size: 16px;
  line-height: 19px;
  margin: 26px 0;
}

.color-dark-blue {
  color: #021838;
}

.bg-dark-blue {
  background-color: #021838;
}

.color-light {
  color: #FFF;
}

.cursor-pointer {
  cursor: pointer;
}

.custom-button {
  font-size: 25px;
  line-height: 29px;
  padding: 17px 94px;
  border: none;
  transition: background-color ease-in-out 0.2s;
}
.custom-button.dark {
  background-color: #021838;
  color: #FFF;
}
.custom-button.light {
  background-color: #FFF;
  color: #021838;
}

.custom-checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox-container input {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox-container input:checked ~ .checkmark {
  background-color: #021838;
}
.custom-checkbox-container input:checked ~ .checkmark.yellow {
  background-color: #edff18;
}
.custom-checkbox-container input:checked ~ .checkmark.blue {
  background-color: #1d79ff;
}
.custom-checkbox-container input:checked ~ .checkmark.purple {
  background-color: #bf2bb9;
}
.custom-checkbox-container input:checked ~ .checkmark.red {
  background-color: #ff3434;
}
.custom-checkbox-container input:checked ~ .checkmark.turquoise {
  background-color: #49e7e7;
}
.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.custom-checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

section#logos {
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#logos {
    padding: 50px 0;
  }
  section#logos .row {
    flex-wrap: wrap;
  }
}
section#logos .col-md:not(:last-of-type) {
  border-right: 2px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  section#logos .col-md:not(:last-of-type) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  section#logos {
    padding: 10px 0;
  }
}

.font-weight-100 {
  font-weight: 100;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

section#headings {
  margin: 50px 0;
  text-align: center;
}
section#headings p:nth-child(1) {
  font-size: 32px;
  margin-bottom: 10px !important;
  color: #021838;
}
section#headings p:nth-child(2) {
  font-size: 20px;
  width: 450px;
  max-width: 100%;
  margin: 0 auto !important;
  color: #b7c4d8;
}

section#main h1 {
  font-size: 35px;
  text-align: center;
}
section#main img {
  border-radius: 30px;
  background-color: #eef0f6;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2.39;
  display: block;
  margin: 50px auto;
}
section#main #icon-article .icons {
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  section#main #icon-article .icons {
    padding-right: 20px;
  }
}
section#main #icon-article .icons a {
  display: block;
  color: #9c9c9c;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
section#main #icon-article .icons a:hover {
  color: #021838;
}
section#main #icon-article .article {
  font-size: 17px;
  line-height: 27px;
  font-weight: 300;
  color: #111;
}

section#releated-articles {
  margin: 50px 0;
  padding: 50px 0;
  background-color: #eef0f6;
}
section#releated-articles .row *[class^=col-] {
  margin: 10px 0;
}
section#releated-articles .article-item {
  background-color: white;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
section#releated-articles .article-item img {
  aspect-ratio: 2.39;
  width: 100%;
  max-width: 100%;
}
section#releated-articles .article-item .date {
  color: #b7c4d8;
  margin: 10px 0;
}
section#releated-articles .article-item .heading {
  font-weight: 500;
  margin: 5px 0 15px 0;
}
section#releated-articles .article-item a.gotoarticle-btn {
  margin-top: auto;
  margin-bottom: 5px;
  background-color: #021838;
  border-radius: 8px;
  align-self: flex-start;
  color: white;
  padding: 7px 25px;
  font-size: 16px;
  text-decoration: none;
}
/* Writer section styling */
#writers {
  padding: 40px 0;
}

#writers .writer-info {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Daha hafif bir gölge */
}

#writers .writer-photo-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 25px; /* Fotoğrafı yazıya göre daha sağa konumlandır */
}

#writers .writer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#writers .writer-details {
  text-align: left;
}

#writers .writer-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
  cursor: pointer;
}
#writers .row {
  margin-top: -35px;
  margin-left: 80px;
}
@media (max-width: 768px) {
  #writers .row {
      margin-top: 0;
      margin-left: 0;
  }
}