/* --- News Section Adventure 2027 Styles --- */

/* リストアイテムのホバー時に背景を少し動かす */
.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.03), transparent);
    transition: left 0.6s ease;
}

.news-item:hover::before {
    left: 100%;
}

/* イージングの定義 */
.ease-expo {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* アウトラインテキスト（再利用可） */
.stroke-text {
    -webkit-text-stroke: 1.5px #1e40af;
    color: transparent;
}

/* マグネティックボタン（JSと連動） */
.magnetic-btn {
    display: inline-flex;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}


