.btc-shared-tours {
  position: relative;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 48px);
  overflow: hidden;
}

.btc-shared-tours__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.btc-shared-tours__header {
  text-align: center;
  color: #0b1720;
  display: grid;

}

.btc-shared-tours__header h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  color: white;
}

.btc-shared-tours__header p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(11, 23, 32, 0.72);
}

.btc-shared-tours__grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 400px));
  justify-content: center;
  justify-items: center;
}

.btc-shared-card {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 18px 36px rgba(15, 35, 53, 0.12);*/
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.btc-shared-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 24px 44px rgba(15, 35, 53, 0.18);*/
}

.btc-shared-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.btc-shared-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.btc-shared-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e1ecf7, #c2d7ee);
}

.btc-shared-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0px 8px 0px;
  flex: 1 1 auto;
}

.btc-shared-card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b1720;
}

.btc-shared-card__title a {
  color: inherit;
  text-decoration: none;
}

.btc-shared-card__title a:hover {
  text-decoration: underline;
}

.btc-shared-card__subtitle {
  margin: -6px 0 0;
  font-size: 0.98rem;
  color: rgba(11, 23, 32, 0.64);
}

.btc-shared-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.98rem;
  color: rgba(11, 23, 32, 0.75);
}

.btc-shared-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btc-shared-card__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(11, 23, 32, 0.82);
  font-size: 0.98rem;
}

.btc-shared-card__highlights li {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.btc-shared-card__highlights i {
  color: #0f6ef5;
  font-size: 1.1rem;
  line-height: 1.2;
}

.btc-shared-card__footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.btc-shared-card__price {
  font-size: 1.2rem;
  color: #005DBC;
  font-weight: 600;
}

.btc-shared-card__price-amount {
  font-weight: 600;
  color: #005DBC;
}

.btc-shared-card__price-note {
  color: #5682ae;
  font-weight: 400;
  font-size: 0.85rem;
}

.btc-shared-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: #023A73;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  /* box-shadow: 0 12px 24px rgba(15, 110, 245, 0.28);*/
}

.btc-shared-card__button:hover {
  background: #0d5dd0;
  color: white;
}

/* Footer Section with View All Button */
.btc-shared-tours__footer-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btc-shared-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #003066;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btc-shared-view-all-btn:hover {
  background-color: #004085;
  color: #ffffff;
  transform: translateY(-2px);
}

.btc-shared-view-all-btn svg {
  transition: transform 0.2s ease;
}

.btc-shared-view-all-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .btc-shared-tours {
    padding: 48px 16px;
  }

  .btc-shared-tours__grid {
    grid-template-columns: 1fr;
  }

  .btc-shared-card__meta {
    gap: 10px 16px;
  }

  .btc-shared-tours__footer-section {
    margin-top: 32px;
  }
}