/* ============================================================
   GW Portal Sections v2.1 — 吹き出し + 4バナー（画像のみ）
   ============================================================ */

.gwps-highlight {
    margin: 16px 0 24px;
    font-family: inherit;
}

/* ============================================================
   吹き出し
   ============================================================ */
.gwps-bubble {
    position: relative;
    z-index: 1;
}

.gwps-bubble__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #5b6ef5 0%, #a855f7 55%, #ec4899 100%);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 3px 14px rgba(120, 80, 220, 0.28);
    text-decoration: none !important;
    transition: filter 0.2s;
}

a.gwps-bubble__inner--link:hover {
    filter: brightness(1.08);
}

.gwps-bubble__icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.gwps-bubble__text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    flex: 1;
    letter-spacing: 0.02em;
}

.gwps-bubble__arrow {
    font-size: 22px;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    flex-shrink: 0;
}

/* 三角（バナー1方向 = 左下）*/
.gwps-bubble__tail {
    width: 0;
    height: 0;
    margin-left: 22px;
    border-left:  10px solid transparent;
    border-right: 10px solid transparent;
    border-top:   12px solid #7c66f0;
}

/* ============================================================
   4バナーグリッド
   ============================================================ */
.gwps-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
}

/* ============================================================
   バナー
   ============================================================ */
.gwps-banner {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #f0f0f0;
    text-decoration: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gwps-banner:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

/* バナー1: 通常の角丸のまま（上書きなし）*/

/* 画像 */
.gwps-banner__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 画像未設定プレースホルダー */
.gwps-banner__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 6px;
    color: #aaa;
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: inherit;
}

.gwps-banner__placeholder span {
    font-size: 28px;
    opacity: 0.5;
}

.gwps-banner__placeholder small {
    font-size: 11px;
    color: #bbb;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 400px) {
    .gwps-bubble__text {
        font-size: 12px;
    }
    .gwps-banner-grid {
        gap: 8px;
    }
}
