/* Country Grid plugin — scoped to .plugin-10006 */
.plugin-10006 .cg-section { padding: 80px 0; }
.plugin-10006 .cg-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.plugin-10006 .cg-label {
    font-size: 13px; font-weight: 500;
    color: var(--ocs-primary, #1a73e8);
    text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px;
}
.plugin-10006 .cg-heading {
    font-size: 38px; font-weight: 400;
    color: #202124; line-height: 1.2; margin-bottom: 14px;
}
.plugin-10006 .cg-sub {
    font-size: 17px; color: #5f6368;
    line-height: 1.65; max-width: 560px; margin-bottom: 40px;
}
.plugin-10006 .cg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.plugin-10006 .cg-card {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 28px 16px 22px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow .2s, border-color .2s;
}
.plugin-10006 .cg-card:hover {
    border-color: var(--ocs-primary, #1a73e8);
    box-shadow: 0 2px 14px rgba(26,115,232,.12);
}
.plugin-10006 .cg-flag {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}
.plugin-10006 .cg-name { font-size: 14px; font-weight: 600; color: #202124; margin-bottom: 4px; }
.plugin-10006 .cg-avg  { font-size: 13px; color: #5f6368; margin-bottom: 6px; }
.plugin-10006 .cg-tag  { font-size: 12px; color: var(--ocs-primary, #1a73e8); font-weight: 500; }
.plugin-10006 .cg-footer { text-align: center; }
.plugin-10006 .cg-btn-outline {
    display: inline-block;
    border: 1.5px solid #dadce0;
    border-radius: 4px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ocs-primary, #1a73e8);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.plugin-10006 .cg-btn-outline:hover { border-color: var(--ocs-primary, #1a73e8); background: #e8f0fe; }

@media (max-width: 1024px) { .plugin-10006 .cg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
    .plugin-10006 .cg-grid { grid-template-columns: repeat(2, 1fr); }
    .plugin-10006 .cg-wrap { padding: 0 24px; }
    .plugin-10006 .cg-heading { font-size: 26px; }
}
