.home-container {
    min-height: 100vh;
    background-color: var(--color-background);
    color: var(--color-foreground);
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.card-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

a.card-item {
  color: var(--primary);
  text-decoration: none;
}

.card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.card-item:hover {
    background-color: var(--muted);
    background-color: color-mix(in srgb, var(--muted) 50%, transparent);
}

.card-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.card-item.disabled .card-item-title {
    color: var(--muted-foreground);
}

.card-item-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-item-text {
    display: flex;
    flex-direction: column;
}

.card-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.card-item-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin: 0;
}

.bottom-cta {
    margin-top: 2rem;
    margin-bottom: 5rem;
    text-align: center;
}

.cta-card {
    background-color: color-mix(in srgb, var(--muted) 50%, transparent);
    padding: 2rem;
}

.cta-content {
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-content h2 {
    margin: 0;
}

.cta-content p {
    color: var(--muted-foreground);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }
}
