.elementor-5108 .elementor-element.elementor-element-f1029f6{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-cb02ab1 *//* Container for the Issues Hub */
.issue-hub-grid {
    display: grid;
    gap: 12px 18px;
    padding: 20px 0;
    list-style-type: none;
    margin: 0;
    grid-template-columns: 1fr; /* Mobile Default */
}

/* 2 Columns on Tablet */
@media (min-width: 600px) {
    .issue-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3 Columns on Desktop */
@media (min-width: 1024px) {
    .issue-hub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Link Styling */
.issue-hub-grid li a {
    text-decoration: none;
    color: #0A5163; /* Brand Teal */
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    background: #ffffff;
    border: 1px solid #e1e8e9;
    border-left: 4px solid #0A5163;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.issue-hub-grid li a:hover {
    background: #f4f8f9;
    color: #073a47;
    border-color: #0A5163;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(10, 81, 99, 0.1);
}/* End custom CSS */