.gim-box {
    max-width: 900px;
    margin: 24px auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.gim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.gim-card {
    display: block;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
}

.gim-card:hover {
    border-color: #cbd5e1;
}

.gim-card h3 {
    margin: 0 0 8px;
}

.gim-card p {
    margin: 0;
    color: #6b7280;
}
button {
    color: #000;
    background: #f8fafc;
    border: 1px solid #d1d5db;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}