.hero{
  height: 500px;
  background: url('images/bg/bg3.jpg');
  width: 100%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 102px;
}
.hero-card{
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  margin: 0 20px;
}
.hero .hero-card h1{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0px;
}
.hero .hero-card p{
  font-size: 1.2rem;
  font-weight: 400;
}
/* Genel arama kutusu stili */
.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Arama ikonu */
.search-icon {
  padding: 15px;
  background-color: #f1f1f1;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.search-icon i {
  font-size: 16px;
  color: #27303d;
}

/* Arama input alanı */
.search-box input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 16px;
  outline: none;
}

/* Ara butonu */
.search-box button {
  background-color: #27303d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #b69d74;
}

/* Responsive */
@media (max-width: 576px) {
  .search-box {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .search-box button {
    width: 100%;
    margin-top: 5px;
    border-radius: 0;
  }
}
.result-box h5{
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.4rem;
  color: #27303d;
}
.result-box, .preview-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem 2.25rem;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 30px 0px rgb(40 49 62 / 27%);
  min-height: 300px;
}

.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results li {
  padding: 10px;
  /* border-bottom: 1px solid #ddd; */
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-results li:hover {
  background-color: #f1f1f1;
}

#file-preview {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.search-result-block{
  background:#EEF0F8;
  padding: 85px 0;
}
.badge-primary {
  background-color: #27303d;
}
.search-result-item {
  display: flex;
  justify-content: space-between;
  padding: 2px;
  border-bottom: 1px solid #cccccc59;
  align-items: center;
  min-height: 45px;
}
.preview-box * {
  color:#141414;
}
.preview-box h5{
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.4rem;
  color: #27303d;
}
@media(max-width: 768px){
  .hero{
    padding-top: 50px;
  }
  .hero .hero-card h1{
    font-size: 2rem;
  }
  .hero .hero-card p{
    font-size: 1rem;
  }
  .result-box:first-child{
    margin-bottom: 20px;
  }
  .search-result-block {
    padding: 50px 0;
  }
}
.suggestions a{
  color: #27303d!important;
}
.post-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}