.learn__listing {
    background: #FBFBFC;
    padding: 2em 0;
}

.learnSection {
    background: #FBFBFC;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.learnSection h4 {
    text-align: center;
    margin-bottom: 1em;
    color: #4D555B;
    font-size: 1.5em;
}

.bk-tags__category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 45em) {
    .bk-tags__category-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 100%;
        width: 100%;
    }
}

.topic-tile {
    cursor: pointer;
    border: 1px solid #F0F1F2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px 0 rgba(228,228,230,1);
    background: white;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.topic-tile:hover {
    box-shadow: 0 4px 16px 0 rgba(228,228,230,1);
    border: 1px solid #2C2EE0;
    transform: translateY(-2px);
}

.topic-tile__label {
    padding: 0.3em 0.75em;
    color: #3C5DFF;
    font-size: 32px;
    transition: 500ms;
}

.topic-tile__label h6 {
    margin: 0;
    padding: 0;
    font-size: 0.6em;
    font-weight: 400;
}

.topic-tile__description {
    padding: 0em 1.5em 2em;
    color: #656A6F;
    font-size: 15px;
    line-height: 1.5;
}

.learn__listing {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.article__sidebar.desktop-only {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

.sidebar-hero__cta {
    width: 100%;
}

.cta-card {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #F0F1F2;
    text-align: center;
}

.cta-card .headline {
    color: #232624;
    font-size: 1.3em;
    font-weight: 600;
    margin: 15px 0 10px;
}

.cta-card div.action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.cta-card div.action a,
.cta-card div.action a:hover {
    background: linear-gradient(270deg, rgb(245, 115, 115) -65.78%, rgb(245, 115, 115) 45.1%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: none;
    border-bottom: 4px solid rgb(186, 74, 74);
    border-radius: 6px;
    margin: 0.5em 0 0;
    width: 100%;
    font-weight: 500;
}

.cta-card .action a {
    display: inline-block;
    background: #3C5DFF;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
    transition: background-color 0.2s ease;
    font-size: 1.1em;
}

.cta-card .action a:hover {
    background: #2C2EE0;
    transform: translateY(-1px);
}

.img-value-props {
    display: flex;
    justify-content: center;
    align-items: center;
}