/* ===== 숫자로 보는 구이구이쪽갈비 전용 CSS ===== */
.ggrb-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.ggrb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ggrb-title {
    text-align: center;
    margin-bottom: 50px;
}

.ggrb-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 10px;
}

.ggrb-title h2 span {
    color: #ff3b30;
}

.ggrb-title p {
    font-size: 18px;
    color: #666;
}

.ggrb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    overflow: hidden;
}

.ggrb-item {
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
}

.ggrb-item:nth-child(3n) {
    border-right: none;
}

.ggrb-item:nth-child(n+4) {
    border-bottom: none;
}

.ggrb-icon {
    font-size: 34px;
    color: #ff3b30;
    margin-bottom: 15px;
}

.ggrb-number {
    font-size: 42px;
    font-weight: 800;
    color: #ff3b30;
    line-height: 1;
    margin-bottom: 8px;
}

.ggrb-label {
    font-size: 17px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 6px;
}

.ggrb-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.ggrb-bottom {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ggrb-bottom-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f1f3d;
    margin-bottom: 8px;
}

.ggrb-bottom-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.ggrb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff3b30;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ggrb-btn:hover {
    background: #e62e24;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ggrb-title h2 {
        font-size: 32px;
    }

    .ggrb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ggrb-item:nth-child(3n) {
        border-right: 1px solid #e9e9e9;
    }

    .ggrb-item:nth-child(2n) {
        border-right: none;
    }

    .ggrb-item:nth-child(n+4) {
        border-bottom: 1px solid #e9e9e9;
    }

    .ggrb-item:nth-child(n+5) {
        border-bottom: none;
    }

    .ggrb-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ggrb-grid {
        grid-template-columns: 1fr;
    }

    .ggrb-item {
        border-right: none !important;
        border-bottom: 1px solid #e9e9e9 !important;
    }

    .ggrb-item:last-child {
        border-bottom: none !important;
    }
}






/* 숫자와 기호를 가로로 나란히 정렬 */
.ggrb-num-wrap {
    display: flex;
    align-items: center;
    justify-content: center; /* 가운데 정렬 */
}

.ggrb-number,
.ggrb-symbol {
    display: inline-block;
}

/* 기호 스타일 (필요시 크기나 여백 조정) */
.ggrb-symbol {
    margin-left: 2px; /* 숫자와 기호 사이 간격 */
}



.ggrb-num-wrap .ggrb-symbol {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #e63939 !important;     /* 여기서 원하는 색상으로 바꿔 */
    margin-bottom: 8px !important;
    align-self: flex-end !important;
}