.fnd-feed-wrapper {
    padding: 2rem 0 !important;
    font-family: sans-serif !important;
    color: #1a1a1a !important;
}

.fnd-feed-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.fnd-feed-title {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #0B141F !important;
}

.fnd-feed-button {
    background: none !important;
    border: none !important;
    color: #F23314 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    padding: 0.25rem 0.5rem !important;
    transition: color 0.3s !important;
}

.fnd-feed-button:hover {
    color: #000 !important;
}

.fnd-feed-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

@media (min-width: 768px) {
    .fnd-feed-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.fnd-feed-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease !important;
}

.fnd-feed-card:hover {
    transform: translateY(-4px) !important;
}

.fnd-feed-card-image {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.fnd-feed-card-content {
    padding: 1rem 1.25rem 1.5rem 1.25rem !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.fnd-feed-card-title {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.75rem 0 !important;
    color: #1a1a1a !important;
}

.fnd-feed-card-description {
    font-size: 0.95rem !important;
    color: #444 !important;
    flex-grow: 1 !important;
    margin-bottom: 1.25rem !important;
}

.fnd-feed-card-link {
    display: inline-block !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #00ACC1 !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    color: #00ACC1 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease-in-out !important;
    align-self: flex-start !important;
}

.fnd-feed-card-link:hover {
    background-color: #00ACC1 !important;
    color: white !important;
}