.card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0.75rem;
    background-color: rgba(13, 31, 60, 0.7);
    width: 300px;
    height: 370px;
    box-shadow: 0 4px 6px -1px rgba(10, 22, 40, 0.4),
    0 2px 4px -2px rgba(10, 22, 40, 0.3);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .header {
    position: relative;
    background-clip: border-box;
    margin-top: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 0.75rem;
    background-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 15px -3px rgba(37,99,235,.3),0 4px 6px -4px rgba(37,99,235,.3);
    height: 14rem;
    overflow: hidden;
  }
  
  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
  }
  
  .info {
    border: none;
    padding: 1.5rem;
    text-align: center;
  }
  
  .title {
    color: #dbeafe;
    letter-spacing: 0;
    line-height: 1.375;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .footer {
    padding: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(37, 99, 235, 0.08);
  }
  
  .tag {
    font-weight: 300;
    font-size: .75rem;
    display: block;
    color: #93c5fd;
  }
  
  .action {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(37,99,235,.4),0 2px 4px -2px rgba(37,99,235,.4);
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-weight: 700;
    font-size: .75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1a3a6b 0%, #2563eb 100%);
    border-radius: 0.5rem;
  }

  .card:hover {
    box-shadow: 0 8px 16px -2px rgba(37, 99, 235, 0.25),
                0 4px 8px -4px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: rgba(59, 130, 246, 0.25);
}

.action:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 6px 8px -1px rgba(37,99,235,.5),
                0 4px 6px -2px rgba(37,99,235,.4);
}  