/**
 * Card Alignment Fix - LayosCamp
 * Ensures uniform card heights and CTA buttons aligned at bottom
 * Applied: 2026-03-31
 */

/* ========================================
   Homepage Cards (.camp-card)
   ======================================== */
.camp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.camp-card__body,
.camp-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.camp-card__description {
  flex: 1;
}

.camp-card__footer {
  margin-top: auto;
}

/* ========================================
   Catalog Cards (.E-camp-card)
   ======================================== */
.E-camp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.E-camp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.E-camp-card__description {
  flex: 1;
}

.E-camp-card__cta {
  margin-top: auto;
}

/* ========================================
   Generic Drupal Views Cards
   ======================================== */
.views-row .node--view-mode-teaser {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.views-row .node--view-mode-teaser .node__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ========================================
   Product Cards (Commerce)
   ======================================== */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__description {
  flex: 1;
}

.product-card__cta,
.product-card__price + a {
  margin-top: auto;
}
