h1 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 4vw + 0.4rem, 3.2rem);
}

.tool-option-group h3 {
    text-align: left;
    font-size: 1rem;
    opacity: 0.65;
}

.tool-textarea-container textarea {
    width: 100%;
    height: 295px;
    box-sizing: border-box;
    resize: vertical;
}

.affirmations-chat {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0 1rem;
    justify-content: center;
}

.affirmation-bubble {
    background: var(--white-80);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--abyss);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
    user-select: none;
}

.affirmation-bubble:hover {
    transform: translateY(-1px);
    background: var(--clean);
}

.tool-examples {
    padding: 1rem 0;
}

.tool-examples h2 {
    text-align: center;
    font-size: clamp(0.875rem, 1.75vw + 0.25rem, 1.5rem);
    margin: 0;
}

.tool-benefits,
.tool-instructions {
    padding: 1.5rem 0;
}


@media (max-width: 768px) {
    h1 {
        text-align: center;
        font-size: clamp(1.75rem, 4.5vw + 0.5rem, 2.25rem);
    }
    
    
    .tool-option-group h3 {
        text-align: center;
        font-size: 1.125rem;
    }
    
    .tools-button {
        margin: 0;
    }

    .tool-textarea-container textarea {
        height: 120px;
    }
    
    .tool-examples h2 {
        font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3rem);
    }

    .only-desktop { display: none; }
}

.only-mobile { display: none; }

@media (max-width: 768px) {
    .only-mobile { display: inline; }
}
