.my_account_content h2 {
    margin-top: 23px;
}

.heading_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading_wrapper a {
    font-size: 14px;
    height: 32px;
    padding: 0 10px;
}

.heading_wrapper a i {
    margin-left: 8px;
    margin-right: 0;
    font-size: 14px;
}

.explore_wrapper {
    display: flex;
    align-items: stretch;
    width: calc(100% + 30px);
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap; 
    -webkit-overflow-scrolling: touch; 
    cursor: grab;
    user-select: none; 
    -webkit-user-select: none;
    padding-bottom: 17px;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.explore_wrapper a,
.explore_wrapper .explore_thumbnail
.explore_wrapper .explore_thumbnail img {
  -webkit-user-drag: none;  /* Chrome, Safari, Edge */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: auto;     /* Keep clicks working */
  user-select: none;
}

.explore_wrapper::-webkit-scrollbar,
.explore_wrapper::-webkit-scrollbar-track,
.explore_wrapper::-webkit-scrollbar-thumb {
    display: none;
}

.explore_membership_wrapper {
    margin-bottom: -17px;
}

.explore_card {
    background-color: var(--primary-background);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    /* width: calc((100% - 50px - 120px) / 4); */
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 30px;
    box-shadow: 0px 3px 5px #00000014;
    transition: 0.2s all ease-in-out;
    -webkit-user-drag: none;  /* Chrome, Safari, Edge */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;    
    pointer-events: auto;     /* Keep clicks working */
    user-select: none;
}

.explore_card .explore_thumbnail {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-color);
    width: calc(100% + 20px);
    margin: -10px 0 10px -10px;
    border-radius: 10px 10px 0 0;
    height: 140px;
    box-sizing: border-box;
}

.explore_card .explore_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.explore_card .explore_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.explore_card .explore_flex p {
    color: var(--primary-text);
    margin: 0;
    width: calc(100% - 45px);
    text-wrap: auto;
}

.explore_card .explore_flex .square_button {
    margin-left: auto;
    background-color: var(--accent-background);
    color: var(--primary-text);
    width: 35px;
    height: 35px;
    font-size: 12px;
}

.explore_card:hover .explore_flex .square_button {
    background-color: var(--primary-color);
    transition: 0.2s all ease-in-out;
}

.membership_card {
    background-color: var(--primary-color);
    color: var(--button-text);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 30px;
    box-shadow: 0px 3px 5px #00000014;
    transition: 0.2s all ease-in-out;
}

.membership_card .subscription {
    color: var(--white);
    margin: 0;
}

.membership_card h3 {
    font-weight: 400;
    margin: 10px 0;
    color: var(--button-text);
    font-size: 24px;
}

.membership_card .payment {
    margin: 0;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1400px) {
    .explore_card {
        width: calc((100% - 50px - 60px) / 3);
    }

    .membership_card {
        width: 300px;
    }
}

@media (max-width: 1200px) {
    .explore_card {
        width: calc((100% - 150px - 20px) / 2);
    }
}

@media (max-width: 1000px) {
    .explore_card {
        width: calc((100% - 50px - 20px) / 2);
    }
}

@media (max-width: 850px) {
    .explore_wrapper {
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-bottom: 0px;
    }

    .explore_card,
    .membership_card {
        margin-right: 10px;
    }

    .explore_wrapper .explore_card:first-of-type,
    .explore_wrapper .membership_card:first-of-type {
        margin-left: 10px;
    }

    .explore_membership_wrapper {
        margin-bottom: 49px;
    }

    .home_heading {
        text-align: left !important;
    }
}

@media (max-width: 500px) {
    .explore_wrapper {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .explore_card {
        width: calc((100% - 30px - 10px) / 2);
    }

    .membership_card {
        width: calc((100% - 60px - 10px));
    }
}

@media (max-width: 400px) {
    .explore_card {
        width: calc((100% - 100px - 10px));
    }
}