
/* Hot Take Form */
.hot-take-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hot-take-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    font-size: 1rem;
}

.hot-take-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.15);
}

.hot-take-textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
