/* Feed Tabs */
.feed-tabs-container {
    width: 100%;
    max-width: 639px;
    border-bottom: var(--border-style);
    padding: 0 20px;
    box-sizing: border-box;
}

.feed-tabs {
    display: flex;
    width: 100%;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.feed-tabs .tab-link {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feed-tabs .tab-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.feed-tabs .tab-link.active {
    color: var(--primary);
    font-weight: 900;
    background: var(--background);
    border-bottom: white solid 2px;
}

.feed-tabs .tab-link:hover::after {
    display: block;
}