/*
Theme Name: PBS Lightweight
Theme URI: https://physicsbysubrata.com/
Author: PBS
Description: Lightweight custom theme for Physics By Subrata.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: pbs-lightweight
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #ffffff;
    color: #1f2937;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.pbs-site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pbs-main {
    flex: 1;
}

.pbs-container {
    width: min(1200px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}




/* =========================================================
   GLOBAL PAGE LEFT / RIGHT SPACING
========================================================= */

.pbs-container {
    width: 100%;
    max-width: 1450px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .pbs-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .pbs-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}