/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");


/* Base Styles */
h1 {
    font-size: var(--text-5xl);
    font-weight: 500;
    margin-bottom: calc(var(--spacing) * 4);
    line-height: calc(var(--spacing) * 20);
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 500;
    margin-bottom: calc(var(--spacing) * 4);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 400;
    margin-bottom: calc(var(--spacing) * 2);
}

h4,
h6 {
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: calc(var(--spacing) * 2);
}

h6 {
    margin-bottom: calc(var(--spacing) * 4);
}

p {
    font-size: var(--text-lg);
    font-family: var(--secondary-font);
    text-align: justify;
    margin-top: 10px;
}

/* Medium Screens (≥768px) */
@media (min-width: 768px) {
    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h5 {
        font-size: var(--text-lg);
    }
}

/* Large Screens (≥1024px) */
@media (min-width: 1024px) {
    h1 {
        font-size: var(--text-5xl);
        line-height: 1.2;
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h5 {
        font-size: var(--text-xl);
    }

    p {
        font-size: var(--text-base);
    }
}

/* Extra Large Screens (≥1350px) */
@media (min-width: 1350px) {
    h1 {
        font-size: var(--text-7xl);
    }

    .blog>h1 {
        font-size: var(--text-5xl);
        /* font-weight: 500;
        margin-bottom: calc(var(--spacing) * 4);
        line-height: calc(var(--spacing) * 20); */
    }
}

/* Ultra Large Screens (≥1550px) */
@media (min-width: 1550px) {
    h1 {
        font-size: var(--text-7xl);
        line-height: 1.2;
    }

    h2 {
        font-size: var(--text-4xl);
    }

    h6 {
        font-size: var(--text-lg);
    }

    p {
        font-size: var(--text-lg);
    }
}