.see-more {
  background-color: unset;
  /* position: absolute; */
  bottom: -10%;
  left: 45%;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  width: 150px;
  text-decoration: none;
}

.see-more:hover {
  border-bottom: 2px solid black;
  text-decoration: none;
}

/*  slide */
/* Định dạng nút điều hướng */
.carousel-indicators {
  position: absolute;
  bottom: -50px; /* Đưa xuống dưới card */
}
.carousel-indicators button {
  background-color: black !important; /* Màu đen */
  width: 12px !important;
  height: 12px !important;
  aspect-ratio: 1/1; /* Giữ hình tròn */
  border-radius: 50% !important; /* Đảm bảo bo tròn */
  border: none !important;
  opacity: 0.5 !important;
}

.carousel-indicators .active {
  opacity: 1 !important;
  background-color: black !important; /* Đảm bảo chấm active cũng màu đen */
}

.btn-dark {
  background-color: #000;
  border: 2px solid black;
  border-radius: 0;
  font-weight: 600;
}

.btn-dark:hover {
  color: black;
  background-color: white;
}

.questions-section .button-collapse {
  border: none;
  font-weight: 600;
  font-size: 18px;
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

/* Rotate icon when collapse opens */
.questions-section button[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.questions-section button[aria-expanded="false"] .fa-chevron-down {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

#home-blog-list {
  margin: auto;
}

@media (min-width: 768px) {
  #home-blog-list .col-md-6 {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  #home-blog-list .col-lg-4 {
    width: calc(33.33333333% - 1rem);
  }
}
@media (min-width: 1200px) {
  #home-blog-list .col-xl-3 {
    width: calc(25% - 1rem);
  }
}

/* === Crew section giữ nguyên class cũ === */
.crew-container {
  height: auto;
}

.crew-container h1 {
  font-weight: 700;
  color: #333333;
}

.crew-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* margin-bottom: 2rem; */
}

.crew-member-container .profile-card {
  position: relative;
  width: 15rem;
  height: 20rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.crew-member-container .profile-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.crew-member-container .profile-card .profile-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  text-align: center;
  height: 100px;
}

.crew-member-container .profile-card .profile-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.crew-member-container .profile-card .profile-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: white;
}

@media (max-width: 576px) {
  .crew-member-container .profile-card {
    width: 100%;
    height: 16rem;
  }
  .title-container span, .title-container h2{
    font-size: 50px !important;
  }
  .title-container div {
    font-size: 60px !important;
  }
}

.investor-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.investor-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.investor-card img.card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.investor-card .card-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.investor-card .card-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.4;
  color: #111;
}

.investor-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.investor-card .tags span {
  font-size: 11px;
  padding: 2px 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #555;
  white-space: nowrap;
  display: inline-block;
}

.investor-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
}

.investor-card .meta span {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.investor-card .card-desc-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px 0;
}

.investor-card .card-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px 0;
  flex: 1;
}

.investor-card .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 4px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}

.investor-card .btn-detail:hover {
  background: #333;
}

.see-more-wrap {
  text-align: center;
  margin-top: 24px;
  width: 100%;
  clear: both;
}

.see-more-wrap a {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.see-more-wrap a:hover {
  text-decoration: underline;
}
