/* ── CPM module — link buttons ────────────────────────── */
.two-column-list ul,
.two-column-list ul.cpm-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-column-list ul::before,
.two-column-list ul.cpm-list::before {
    display: none !important;
    content: none !important;
}

.two-column-list li {
    margin: 0 !important;
    padding: 0 !important;
    break-inside: avoid;
}

/* Link button */
.cpm-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #F5F5F7;
    border-radius: 12px;
    color: #1d1d1f;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.cpm-link-btn:hover {
    background: #08496D;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(8,73,109,.18);
}

/* SVG icon */
.cpm-link-icon {
    flex-shrink: 0;
    fill: #08496D;
    transition: fill 0.2s;
    width: 18px;
    height: 18px;
}

.cpm-link-btn:hover .cpm-link-icon {
    fill: #ffffff;
}

@media (max-width: 767px) {
    .two-column-list ul,
    .two-column-list ul.cpm-list {
        grid-template-columns: 1fr;
    }
}

.cmb-1 {
    margin-top: 50px;
}