/*
Theme Name: Frontier
Author: Koaya
Description: Base Theme developed by xizhi-tbu web team.
Version: 1.6.2
Tested up to: 6.9
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: frontier
*/

/* ========== 基础区块样式 ========== */
.wp-block {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* 对齐样式 */
.alignwide {
    max-width: 1100px;
}

.alignfull {
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* 按钮区块 */
.wp-block-button__link {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* 图片区块 */
.wp-block-image img {
    height: auto;
    max-width: 100%;
}

/* 画廊区块 */
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}

/* 引用区块 */
.wp-block-quote {
    border-left: 4px solid #000;
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
}

/* 封面区块 */
.wp-block-cover {
    min-height: 430px;
}

/* 媒体文本区块 */
.wp-block-media-text {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto;
}

/* 分隔符 */
.wp-block-separator {
    border: none;
    border-bottom: 2px solid;
    margin: 1.65em auto;
}

/* ========== 响应式设计 ========== */
@media screen and (max-width: 1280px) {
    .h1, h1 {
        text-align: center;
    }
    
    .alignwide {
        max-width: 100%;
    }
    
    .wp-block-media-text {
        grid-template-columns: 100%;
    }
    
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 782px) {
    .wp-block-columns {
        flex-wrap: wrap;
    }
    
    .wp-block-column {
        flex-basis: 100% !important;
        margin-bottom: 2em;
    }
}