/* Fix for carousel and card images to maintain consistent height */

/* Carousel image fix */
.carousel-item {
  height: 400px; /* Fixed height for carousel items */
  overflow: hidden;
}

.carousel-item img.d-block {
  width: 100%;
  height: 400px;
  object-fit: cover; /* Maintain aspect ratio while filling container */
}

/* Card image fix */
.card.card-blog .card-image {
  height: 220px; /* Fixed height for card images */
  overflow: hidden;
}

.card.card-blog .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover; /* Maintain aspect ratio while filling container */
}

/* 検索フォーム用のスタイル */
.search-desktop {
  position: absolute;
  left: 200px;
  top: 15px;
}

.search-desktop .form-control {
  width: 180px;
}

.search-mobile .form-control {
  height: 30px;
  width: 120px;
  padding: 5px 10px;
  font-size: 0.9em;
}

.search-mobile .btn-sm {
  width: 30px;
  height: 30px;
  padding: 0;
}

@media (max-width: 991px) {
  .navbar .navbar-translate {
    display: flex;
    align-items: center;
  }
}

/* 記事詳細ページの検索セクション */
.section-search-articles {
  background-color: rgba(0, 0, 0, 0.03);
  padding: 40px 0;
  border-radius: 5px;
}

.section-search-articles .form-group {
  max-width: 500px;
  margin: 0 auto 15px;
}
