/* Reusable component styles */

/* Import component-specific styles */
@import 'components/nav_bar.css';
@import 'components/footer.css';

.benchmark-card {
    background: var(--hero);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    flex: 1 1 220px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
    transition: 0.2s;
}

.benchmark-card:hover {
    background: #6d9048;
    scale: 1.05;
    cursor: pointer;
}

.benchmark-card:active {
    background: #7fa852;
}

.card-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.card-subtitle {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: center;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
}

.benchmark-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.benchmark-card p {
    margin: 0;
    opacity: 0.95;
}
