/* Grid Layout for Pitches */
.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Card Container */
.pitch-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in-out;
}

/* Card Hover Effect */
.pitch-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pitch-link:hover .pitch-card {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Image */
.pitch-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Card Content */
.pitch-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Company Name */
.pitch-company {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1d3557;
    margin-bottom: 4px;
}

/* Pitch Title */
.pitch-title {
    font-size: 1rem;
    font-weight: normal;
    color: #457b9d;
    margin-bottom: 6px;
}

/* Industry & Location Badges */
.pitch-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.pitch-industry,
.pitch-location {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    background: #f1f3f5;
    color: #495057;
    font-weight: 500;
}

/* Description */
.pitch-description {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Progress Bar */
.pitch-progress {
    background: #e9ecef;
    border-radius: 5px;
    height: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.pitch-progress-bar {
    background: #2a9d8f;
    height: 8px;
    border-radius: 5px;
}

/* Funding Info */
.pitch-funding {
    font-size: 0.9rem;
    color: #343a40;
    margin-bottom: 15px;
}

/* Invest Button */
.pitch-invest-btn {
    display: block;
    background: #ED8100;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s ease;
}

.pitch-invest-btn:hover {
    background: #d65a3b;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .pitch-card-image img {
        height: 150px;
    }
}

