/*
Theme Name: SwitchWiser Pro
Theme URI: https://switchwiser.net
Author: Mustafa Yak
Author URI: https://switchwiser.net
Description: A premium WordPress magazine theme for AI tools, software, gadgets, and buying guides.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 8.1
License: GPL-2.0-or-later
Text Domain: switchwiser-pro
*/

:root{
    --primary:#0F57C7;
    --secondary:#68C31A;
    --dark:#1F2937;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --radius:14px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.7;
}

a{
    color:var(--primary);
    text-decoration:none;
}

a:hover{
    color:var(--secondary);
}

img{
    max-width:100%;
    height:auto;
}

.container{
    width:min(1200px,92%);
    margin:auto;
