/**
 * Common Hero Styles
 * 共通ヒーローコンポーネント用スタイル
 *
 * @package Cocoon Child - RUFFREE
 */

/* ========================================
   COMMON HERO SECTION
   ======================================== */
.common-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin-top: -114px; /* ヘッダーと重ねる */
}

.common-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.common-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 55, 47, 0.6);
}

.common-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* Label with Wing Icons */
.common-hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.common-hero-label span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent-2);
}

.common-hero-wing {
    width: 49px;
    height: 35px;
    opacity: 0.8;
}

/* Title */
.common-hero-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .common-hero {
        height: 350px;
        margin-top: -80px; /* モバイルヘッダー分 */
    }

    .common-hero-content {
        padding-top: 80px; /* モバイルヘッダー分 */
    }

    .common-hero-label {
        gap: 10px;
    }

    .common-hero-label span {
        font-size: 12px;
    }

    .common-hero-wing {
        width: 35px;
        height: 25px;
    }

    .common-hero-title {
        font-size: 22px;
    }
}
