/* Support Page Specific Styles */

/* Hide the HR inherited from tutorial structure */
main.support-page hr {
    display: none;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
    gap: 2em; /* Gap between items */
    margin-top: 2em; /* Space above grid */
    margin-bottom: 2em; /* Space below grid */
}

.support-item {
    text-align: left; /* Changed to left align */
}

/* REMOVED - .support-icon-placeholder styles as the element is replaced by Font Awesome icons styled in component.css
.support-icon-placeholder {
    display: block; 
    width: 60px;
    height: 60px;
    line-height: 60px; 
    border: 1px dashed var(--border-color);
    border-radius: 50%; 
    margin: 0 0 1em 0; 
    color: var(--text-placeholder);
    font-size: 0.8em;
}
*/

.support-item h3 {
    font-size: 1.6em; /* INCREASED to match .feature-category h2 */
    margin-top: 0;
    margin-bottom: 0.5em;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
}

.support-item p {
    font-size: 0.95em;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1em;
}

/* No need for specific .support-content h2/p rules anymore */ 