/* --- 1. BREADCRUMBS --- */
.channel-breadcrumb-container {
  padding-top: 120px;
  padding-left: 5%;
  padding-bottom: 20px;
  display: flex;
  gap: 5px;
}

.breadcrumb-shape {
  background-color: #00c2d1;
  color: rgb(0, 0, 0);
  padding: 8px 15px 8px 25px;
  position: relative;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.breadcrumb-shape a,
.breadcrumb-shape span {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.breadcrumb-shape::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #00c2d1;
  z-index: 2;
}

.breadcrumb-shape::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #fff;
  z-index: 1;
}

.breadcrumb-shape:first-child {
  padding-left: 15px;
}

.breadcrumb-shape:first-child::before {
  display: none;
}

/* Mobile: Breadcrumbs */
@media (max-width: 768px) {
  .channel-breadcrumb-container {
    padding-top: 80px;
    padding-left: 3%;
    padding-bottom: 15px;
  }
  .breadcrumb-shape {
    font-size: 12px;
    padding: 6px 12px 6px 20px;
  }
  .breadcrumb-shape::after {
    right: -16px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #00c2d1;
  }
  .breadcrumb-shape::before {
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #fff;
  }
}

@media (max-width: 480px) {
  .channel-breadcrumb-container {
    padding-top: 60px;
    flex-wrap: wrap;
  }
  .breadcrumb-shape {
    font-size: 11px;
    padding: 5px 10px 5px 15px;
  }
}


/* --- 2. HEADER & WRAPPER --- */
.channels-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 100px;
  min-height: 60vh;
}

.channels-header {
  text-align: center;
  margin-bottom: 60px;
}

.channels-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #63d2ff;
  margin-bottom: 10px;
  font-weight: bold;
}

.channels-subtitle {
  font-family: 'Playfair Display', serif;
  color: #888;
  font-size: 18px;
  margin-top: 0;
}

/* Mobile: Header */
@media (max-width: 768px) {
  .channels-wrapper { padding: 20px 15px 60px; }
  .channels-header { margin-bottom: 40px; }
  .channels-title { font-size: 36px; }
  .channels-subtitle { font-size: 16px; }
}

@media (max-width: 480px) {
  .channels-title { font-size: 28px; }
  .channels-subtitle { font-size: 14px; }
}


/* --- 3. CARDS & GRID --- */
.channels-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.channel-card {
  background: #fff;
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-5px);
}

.card-content {
  text-align: center;
  width: 100%;
}

.channel-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  display: inline-block;
}

.youtube-logo {
  max-width: 180px;
}

.tripadvisor-logo {
  max-width: 220px;
}

/* Button Override */
.channel-btn {
  background-color: #2a6c74 !important;
  color: #fff !important; /* Added white text color */
  text-decoration: none !important; /* Removed underline */
  padding: 12px 30px;
  border-radius: 4px;
  font-family: sans-serif;
  text-transform: capitalize;
  display: inline-block; /* Ensures proper padding and shape */
}

.channel-btn:hover {
  background-color: #005a54 !important;
  color: #fff !important; /* Ensure text remains white on hover */
}

/* Mobile: Grid */
@media (max-width: 768px) {
  .channels-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .channel-card {
    max-width: 100%;
    height: 250px;
  }
  .channel-logo {
    max-width: 160px;
    margin-bottom: 25px;
  }
  .youtube-logo { max-width: 140px; }
  .tripadvisor-logo { max-width: 180px; }
}

@media (max-width: 480px) {
  .channel-card { height: 220px; }
  .channel-logo {
    max-width: 140px;
    margin-bottom: 20px;
  }
  .youtube-logo { max-width: 120px; }
  .tripadvisor-logo { max-width: 160px; }
  .channel-btn {
    padding: 10px 25px !important;
    font-size: 13px;
  }
}