#home-feed-app {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 0;
    background-color: transparent;
    color: #333;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#home-feed-app *,
#home-feed-app *::before,
#home-feed-app *::after {
    box-sizing: border-box;
}

#home-feed-app .home-feed-container {
    max-width: 1140px;
    margin: 0 auto;
}

#home-feed-app .home-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1e293b;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

#home-feed-app .home-feed-heading {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    border:none
}

#home-feed-app .home-feed-heading-accent {
    color: #f59e0b;
}

#home-feed-app .home-feed-viewall {
    text-decoration: none;
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
}

#home-feed-app .home-feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

#home-feed-app .home-feed-item {
    display: flex;
    gap: 15px;
    position: relative;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

#home-feed-app .home-feed-item:hover {
    background-color: #f1f5f9;
}

#home-feed-app .home-feed-thumbnail {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}

#home-feed-app .home-feed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home-feed-app .home-feed-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home-feed-app .home-feed-category {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    border-bottom: none;
}

#home-feed-app .home-feed-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #1e293b;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border-top: none;
}

#home-feed-app .home-feed-link {
    text-decoration: none;
    color: inherit;
}

#home-feed-app .home-feed-link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

#home-feed-app .home-feed-date {
    color: #9ca3af;
    font-size: 12px;
}

@media (max-width: 768px) {
    #home-feed-app{
        padding: 0 15px;
    }
    #home-feed-app .home-feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    #home-feed-app .home-feed-grid {
        grid-template-columns: 1fr;
    }
}
