/* Mobile-only photo tips styling - clean centered cards approach */
@media (max-width: 768px) {
    /* Container styling */
    .photo-guide-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Reset and simplify list */
    .photo-tips-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Clean card-style tips without bullets */
    .photo-tips-list li {
        padding: 12px 15px !important;
        margin-bottom: 10px !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: #6b4e2f !important;
    }
    
    /* Remove any bullet styling */
    .photo-tips-list li:before {
        display: none !important;
    }
    
    /* Image container */
    .photo-guide-left {
        margin-bottom: 15px !important;
    }
}