/**
 * Destination Article Card Styling
 * Beautiful cards with images, excerpts, and Read More buttons
 */

.destination-teaser-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.destination-teaser-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Featured Image */
.dest-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f3f4f6;
}

.dest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.destination-teaser-card:hover .dest-card-image img {
  transform: scale(1.05);
}

/* Card Header */
.dest-card-header {
  padding: 1.5rem 1.5rem 0;
}

.dest-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.dest-card-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.dest-card-title a:hover {
  color: #0c7e52;
}

/* Meta (Author/Date) */
.dest-card-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Body/Excerpt */
.dest-card-body {
  padding: 0 1.5rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.dest-card-body p {
  margin: 0 0 1rem;
}

/* Read More Button */
.dest-card-footer {
  padding: 0 1.5rem 1.5rem;
}

.dest-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #0c7e52;
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.dest-read-more-btn::after {
  content: '→';
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.dest-read-more-btn:hover {
  background: #0a6543;
  transform: translateX(2px);
}

.dest-read-more-btn:hover::after {
  transform: translateX(3px);
}
