/* Base Button Styles */
.btn {
  font-family: 'Inter', sans-serif;
  /*font-weight: 400;*/
  font-size: 16px;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.episode-actions {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.episode-actions a {
  flex: 1 1 calc(50% - 4px);
  min-width: 0;
  text-align: center;
  white-space: normal;
}

@media (max-width: 400px) {
  .episode-actions {
    flex-direction: column;
  }

  .episode-actions a {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* === Button Variants === */

/* Primary Button – dark blue */
.btn-primary {
  background-color: #043548;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: rgba(4, 53, 72, 0.9);
  color: #ffffff;
}

.episode-readmore .btn-highlight {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.share-btn {
    display:inline-block;
    margin:5px;
    padding:8px 16px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    text-decoration:none;
    color:#003344;
    background:#fff;
    transition:0.2s;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.share-buttons .share-btn {
  margin: 0;
}
.share-btn:hover {
    background:#003344;
    color:#fff;
}


/* Secondary Button – light grey with blue text */
.btn-secondary {
  background-color: #f4f4f4;
  color: #043548;
}

.btn-secondary:hover {
  background-color: rgba(244, 244, 244, 0.85);
}

/* Link Button – text-only */
.btn-link {
  background: none;
  color: #043548;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 4px;
}

.btn-link:hover {
  text-decoration: underline;
}

/* === Optional Highlight Button === */
.btn-highlight {
  background-color: #ffcc66;
  color: #043548;
}

.btn-highlight:hover {
  background-color: rgba(255, 204, 102, 0.9);
}

/* === Button Sizes === */
.btn-sm {
  font-size: 14px;
  padding: 0.5rem 1rem;
}


/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: #043548;
	border: 2px solid #043548;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background-color: #35bcbf; /* your turquoise shade */
	border: 2px solid #35bcbf;
  color: #ffffff;
}


/* === White Button for Dark Backgrounds === */
.btn-white {
  background-color: #ffffff!important;
  color: #043548!important;
  border: none!important;
  font-weight: 600!important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9)!important;
  color: #043548!important;
}

/* === Extra Small Button Variant (for compact cards) === */
.btn-xs {
  font-size: 12px;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.btn-xxs {
  font-size: 12px;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }
}
