.inspiration-content {
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-radius: 22px;
    background: #faf9ff;
    box-shadow: 0px 16px 15px 1px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

.inspiration-search {
    padding: 0.5rem;
    width: 100%;
    max-width: 750px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.search-input-wrap {
    width: 100%;
}

.search-input {
    width: 100%;
    min-height: 5rem;  
    max-height: 10rem;     
    padding: 14px 16px;
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: 10px;
    border: 0px;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
    resize: none;           
    white-space: pre-wrap;   
    overflow-y: auto;   
}



.search-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-modes {
    display: flex;
    gap: 10px;
}

.mode-btn {
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.mode-btn.active,
.mode-btn:hover {
    background: white;
    box-shadow: 3px 13px 13px 0px rgba(0, 0, 0, 0.06);
}

.search-btn {
    padding: 10px 20px;
    background: #7b4bff;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.search-btn:hover {
    background: #6a3de0;
}




/* inspiration results */

.inspiration-results {
    width: 100%;
    max-width: 700px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.results-header{
    font-size: 1.3rem;
    font-weight: 700;
    color: #220041;
}


.results-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.result-card {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

.result-caption {
    font-size: 1rem;
    color: #4a3e57;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.result-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.link-icons{
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}