/*
Theme Name: Astra Child - COS图片站
Theme URI: https://wpastra.com/
Description: Astra子主题 - 专为COS图片站定制，支持多套视觉风格预设切换
Author: 定制版
Author URI: https://wpastra.com/about/
Template: astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-cos
*/

/* ============================================
   基础样式优化
   ============================================ */

/* 容器宽度 */
.ast-container {
    max-width: 1400px;
}

/* 图片响应式 */
img {
    max-width: 100%;
    height: auto;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ast-article-post {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   移动端适配
   ============================================ */
@media (max-width: 768px) {
    .ast-article-post {
        margin-bottom: 1rem;
    }
}
