.gcb-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gcb-cards-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.gcb-static-card {
    flex: 0 0 220px;
    background: #0A1128!important;
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    min-height: 300px;
}

.gcb-static-card h2 {
    margin-top: 0;
}

.gcb-static-card img {
    margin-top: 12px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: -100px;
}

.gcb-viewall {
    display: block;
    color: #fff;
    margin-top: 8px;
    text-decoration: none;
    font-weight: bold;
}

.gcb-viewall:hover {
color: #fff;
}

.gcb-carousel-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.gcb-card {
    flex: 0 0 270px;
    background: #f8f9fb;
    border-top: 5px solid #0A1128;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
     min-height: 300px;
}

.gcb-card h3 {
    font-size: 18px;
    margin-top: 0;
}

.gcb-card p {
    font-size: 15px;
    color: #444;
    flex-grow: 1;
}

.gcb-readmore {
    margin-top: 10px;
    color: #001845;
    text-decoration: none;
    font-weight: bold;
}

.gcb-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.gcb-nav button {
    width: 36px;
    height: 36px;
    background-color: #001845;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.gcb-nav button:hover {
    background-color: #002866;
}