.group-page {
    padding: 60px 0;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 60px;
    color: #777;
}

.breadcrumb .current {
    color: #e60012;
}

.group-title {
    text-align: center;
    margin-bottom: 80px;
}

.group-title h1 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.group-title h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #e60012;
    margin: 15px auto 0;
}

.group-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.group-grid {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}


.group-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.group-card:hover {
    transform: translateY(-6px);
}

.group-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: #fdeaea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.card-body h3 {
    font-size: 18px;
    margin: 0;
}

.card-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #999;
}

.card-body p {
    font-size: 14px;
    color: #666;
}

/* ===============================
SP / Tablet
================================ */

@media (max-width: 768px) {

    .group-title {
        margin-bottom: 50px;
    }

    .group-title h1 {
        font-size: 28px;
    }

    .group-title p {
        font-size: 14px;
        line-height: 1.8;
    }

    .group-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .group-card img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 16px;
    }

    .card-body p {
        font-size: 13px;
        line-height: 1.7;
    }

    .card-icon {
        width: 32px;
        height: 32px;
    }

    .card-icon img {
        width: 16px;
        height: 16px;
    }

}