/* ====================================
   Component-Safe Minimal Reset
   سازگار با Blocksy بدون خرابکاری
   ==================================== */

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* حذف margin‌های پیش‌فرض تایپوگرافی بدون دخالت در هدر/فوتر Blocksy */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote {
    margin: 0;
    padding: 0;
}

/* تصاویر */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* لینک‌ها */
a {
    color: inherit;
    text-decoration: none;
}

/* دکمه‌ها و input */
button,
input,
textarea,
select {
    font: inherit;
}

div.ct-container-full {
    margin-top: 0;    
}

:is(.is-layout-flow,.is-layout-constrained)>*:where(:not(h1,h2,h3,h4,h5,h6)) {
    margin-block-start: 0;
    margin-block-end: 0;
}

