.background-aslan2 {
  font-family: 'Poppins', sans-serif;
  background-color: #e8eff8;
  padding: 60px 20px;
  color: #0c1020;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.content-aslan2 {
  max-width: 1600px; /* 1920'ye çok yaklaşır ama kenarlarda boşluk bırakır */
  width: 100%;
}

.section-label-aslan2 {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.header-line-aslan2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 120px;
  
  margin-bottom: 40px;
}

.title-aslan2 {
  font-size: 38px;
  font-weight: 700;
  white-space: nowrap;
}

.right-meta-aslan2 {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 300px;
}

.info-text-aslan2 {
  font-size: 20px;
  color: #555;
gap: 1px;
  flex: 1;
  min-width: 180px;
}

.btn-more-aslan2 {
  background: #0c1020;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 8px;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-more-aslan2:hover {
  background: #1a1f3b;
}

.card-aslan2 {
  display: flex;
  align-items: center;
  background: #ffffff52;
  padding: 20px 50px;
  margin-bottom: 30px;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  transition: background-color 0.4s ease, color 0.4s ease;
  color: #000000;
  border: 1px black;
}

.card-aslan2:hover {
  background-color: #007bff;
  color: #ffffff;
}

.card-aslan2:hover .text-aslan2 p,
.card-aslan2:hover .text-aslan2 h3 {
  color: #ffffff;
}

.left-aslan2 {
  display: flex;
  align-items: center;
  flex: 1;
}

.icon-aslan2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #007bff42;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 20px;
  transition: background-color 0.4s, color 0.4s;
}

.card-aslan2:hover .icon-aslan2 {
  background: 00558d;
  color: #838383;
}

.text-aslan2 h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 4px;
  color: inherit;
  transition: color 0.4s;
}

.text-aslan2 p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  transition: color 0.4s;
}

.arrow-aslan2 {
  background: #e6ecf6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0c1020;
  transition: transform 0.4s ease, color 0.4s ease;
}
@media (max-width: 768px) {
  .header-line-aslan2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .title-aslan2 {
    font-size: 28px;
    white-space: normal;
  }

  .right-meta-aslan2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .info-text-aslan2 {
    font-size: 16px;
    color: #444;
  }

  .btn-more-aslan2 {
    font-size: 12px;
    padding: 8px 16px;
  }

  .card-aslan2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .left-aslan2 {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .text-aslan2 p {
    font-size: 14px;
    max-width: 100%;
  }

  .arrow-aslan2 {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-top: 10px;
    align-self: flex-end;
  }

  .icon-aslan2 {
    display: none;
  }
}

@media (min-width: 1920px) {
  .content-aslan2 {
    max-width: 1800px;
  }
}
@media (max-width: 768px) {
  .header-line-aslan2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-meta-aslan2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card-aslan2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .arrow-aslan2 {
    margin-top: 10px;
    align-self: flex-end;
  }
}

