/* =========================================
   首頁樣式 home.css
   ========================================= */

/* Hero */
.corp-hero {
    background: linear-gradient(135deg, #1a3c6e 0%, #2563eb 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}
.corp-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.corp-hero__subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 32px;
}
.corp-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 產品分類 */
.corp-product-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.corp-product-cats__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}
.corp-product-cats__item:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

/* 優勢 */
.corp-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.corp-advantages__item {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.corp-advantages__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.corp-advantages__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.corp-advantages__desc {
    font-size: 0.875rem;
    color: #64748b;
}

/* 案例 */
.corp-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* 最新文章 */
.corp-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.corp-post-card__thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}
.corp-post-card__body {
    padding: 12px 0;
}
.corp-post-card__date {
    font-size: 0.8rem;
    color: #94a3b8;
}
.corp-post-card__title a {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}
.corp-post-card__title a:hover {
    color: #2563eb;
}

/* 首頁 CTA */
.corp-home-cta {
    background: #1a3c6e;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.corp-home-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.corp-home-cta__desc {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

/* 關於摘要 */
.corp-about-snippet {
    background: #f8fafc;
}
.corp-about-snippet p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* 通用 section 間距 */
.corp-section {
    padding: 80px 0;
}
.corp-section__more {
    text-align: center;
    margin-top: 40px;
}
