/* ======================= */
/* CARD COMPONENTS */
/* ======================= */

/* Mission Cards */
.mission-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 79, 102, 0.10);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  box-shadow: 0 8px 22px rgba(11, 79, 102, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Thematic Area Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background-color: var(--ahda-white);
    box-shadow: var(--shadow-md);
}

/* Program Cards */
.program-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.85) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 15px 35px rgba(11, 79, 102, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Continue with all card component styles... */