/* Mobile Responsive Fixes for Promotional Section */

@media (max-width: 768px) {
    /* Adjust proposal section layout for mobile */
    .proposal-section .proposal-details {
        flex-direction: column;
    }
    
    .proposal-section .proposal-left,
    .proposal-section .proposal-right {
        width: 100%;
    }
    
    /* Add more space between timer and action section */
    .proposal-right .proposal-timer-container {
        margin-bottom: 90px;
    }
    
    /* Ensure action section is properly positioned */
    .proposal-right .proposal-action {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
    
    /* Adjust timer size for better mobile display */
    .proposal-timer-inner {
        width: 120px;
        height: 120px;
    }
    
    .proposal-timer-time {
        font-size: 24px;
    }
    
    /* Make button full width on mobile */
    .proposal-connect-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Improve text readability on mobile */
    .proposal-title {
        font-size: 24px;
    }
    
    .proposal-subtitle {
        font-size: 16px;
    }
    
    .proposal-action-subtext,
    .proposal-status {
        font-size: 14px;
    }
}
