/* Add any custom styles here */
body {
    font-family: Inter, "Noto Sans", sans-serif;
}

.venture-list {
    list-style-type: none;
    padding: 0;
}

.venture-list li {
    padding: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.venture-list li:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.venture-list h4 {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dce0e5;
}

.venture-details {
    margin-top: 1rem;
    flex-grow: 1;
}

.venture-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.explore-more {
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.explore-more:hover {
    background-color: #3b82f6;
}