
.creator-hustles-loop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.creator-hustle-item {
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
}
.creator-hustle-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.creator-hustle-item h3 {
    margin: 10px 0 8px;
    font-size: 1.25em;
}
.creator-hustle-item .view-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #239593;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.creator-hustle-item .view-more:hover {
    background-color: #1d7b7b;
}
.creator-hustle-form-container {
    margin-top: 30px;
}
