/*
Theme Name: Tech Expert View
Theme URI: https://techexpertview.com
Author: Tech Expert View
Description: Editable affiliate WordPress theme 
Version: 1.0
*/

:root {
    --primary: #2563eb;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --bg: #f6f7fb;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
}

a { text-decoration: none; color: var(--primary); }

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.btn {
    background: var(--accent);
    padding: 10px 15px;
    color: black;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
}
