/**
 * HiTemp PC 端公共 .article-hero 头部组件
 *
 * 用于以下 PC 页面（替代之前重复 7 次的 ~78 行 CSS）：
 * - Template/PC/article-category.php (新闻分类)
 * - pages/about-us/PC/page-about-us.php (关于我们)
 * - pages/advertising/PC/page-advertising.php (广告服务)
 * - pages/contact/PC/page-contact.php (联系我们)
 * - pages/copyright/PC/page-copyright.php (版权声明)
 * - pages/disclaimer/PC/page-disclaimer.php (免责声明)
 * - pages/support/PC/page-support.php (售后支持)
 *
 * @package HiTemp
 * @since 1.0.72
 */

.article-hero {
    background: linear-gradient(135deg, #f66600 0%, #ff8534 50%, #ffa366 100%);
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
}

.article-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.article-hero .hero-content {
    max-width: 600px;
}

.article-hero .hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    min-height: 29px;
}

.article-hero .hero-decoration {
    position: relative;
    width: 200px;
    height: 200px;
}

.article-hero .deco-icon {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 30px;
    transform: rotate(-8deg);
    backdrop-filter: blur(4px);
}

.article-hero .deco-icon i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
}

.article-hero .deco-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 12px 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}
