/* === AIOS Global CSS (2026-04-03) === */

/* Плавные анимации */
.t-btn { transition: all 0.3s ease; }
.t-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,152,0,0.3); }

/* Типографика */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Формы — оранжевый фокус */
.t-input:focus { border-color: #ff9800 !important; box-shadow: 0 0 0 3px rgba(255,152,0,0.15) !important; }
.t-input { transition: border-color 0.3s ease, box-shadow 0.3s ease; }

/* Блог карточки */
.t-feed__post { transition: all 0.3s ease; border-radius: 8px; overflow: hidden; }
.t-feed__post:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }

/* Ссылки */
a { transition: color 0.2s ease; }

/* Мобильная оптимизация */
@media (max-width: 640px) {
  .t-title { font-size: 28px !important; line-height: 1.3 !important; }
  .t-descr { font-size: 16px !important; line-height: 1.5 !important; }
}

/* === End AIOS CSS === */