/* INVESTOR PESENTATIONS - DEFAULT */
:root {
  --primary-color: #3498db;
  --primary-color-2: #2d5d9f;
  --secondary-color: #2980b9;
  --text-color: #000;
  --background-color: #fff;
  --card-background: #f9f9f9;
}

.presentations-container {
  display: flex;
  max-width: 100%;
  margin: 20px 0 60px 0;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
}

.presentation-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
}

.presentation-card {
  width: 100%;
  height: 100%;
  background-color: var(--card-background);
  background: linear-gradient(to right, #f0f4ff, #e2f0ff);
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s ease;
  overflow: hidden;
}

.presentation-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #f0f4ff, #d7e9fc);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #0089af;
}

.card-header {
  padding: 20px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #002060;
}

.card-date {
  font-size: 1rem;
  color: #005a9e;
}

.presentation-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-top: 1px solid #eee;
  flex-grow: 1;
}

/* MEDIA QUERIES - START */
@media (max-width: 640px) {
  .card-title {
    font-size: 1.2rem;
  }
  .card-date {
    font-size: 0.95rem;
  }
}