.internal-links {
    padding: 2rem 0;
    border: 2px solid #eaeaea;
    border-radius: 1rem;
    margin-top: 2rem;
}
.internal-links .tabs-wrapper {
    overflow: auto;
}
.internal-links .tabs-wrapper p {
    cursor: pointer;
}
.internal-links .tabs-wrapper .tab-link {
    color: black;
    line-height: 16px;
}
.internal-links .tabs-wrapper .tab-link.active {
    background: #df3226;
    color: white;
}
.internal-links .tab-content-wrapper .tab-content {
    padding: 2rem;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.internal-links .tab-content-wrapper .tab-content .link-buttons {
    color: black;
    flex: 1 0 20%;
    max-width: 20%;
    padding: 1rem;
    font-weight: 500;
}
.internal-links .tab-content-wrapper .tab-content.active {
    display: flex !important;
}

@media (max-width: 600px) {
    .internal-links {
        margin: 0 24px;
    }
    .internal-links .tabs-wrapper {
        padding-bottom: 10px;
    }
    .internal-links .tabs-wrapper .tab-link {
        font-weight: 500;
        border-radius: 2rem;
        margin: 0 0.3rem;
        padding: 0.5rem;
        text-wrap: nowrap;
    }
    .internal-links .tab-content {
        display: none !important;
    }
    .internal-links .tab-content .link-buttons {
        flex: 1 0 50% !important;
        max-width: 50% !important;
    }
    .internal-links .tab-content.active {
        display: flex !important;
    }
}